Wallet update to 1.1.0.0
Run the following commands as root to update CropCoin to version 1.1.0.0
for crop in $(grep -l cropcoind /etc/systemd/system/*.service | awk -F"/" '{print $NF}'); do systemctl stop $crop; done
rm cropcoind.gz
wget -q https://github.com/zoldur/CropCoin/releases/download/v1.1.0.0/cropcoind.gz
gunzip cropcoind.gz
chmod +x cropcoind
cp cropcoind /usr/local/bin
for crop in $(grep -l cropcoind /etc/systemd/system/*.service | awk -F"/" '{print $NF}'); do systemctl start $crop; done