Skip to content

EtherZero-Masternode v2.0.3

Compare
Choose a tag to compare
@rolong rolong released this 30 Aug 07:22
· 90 commits to master since this release
0ea4c2a

Release Notes

For EtherZero Geth v2.0.3, it contains the NTP time drift detection and adjusting via the SNTP protocol, lower the risks that may cause failure when generating new blocks for masternode, make the Etherzero Network more stable and effective.

How To Upgrade

1, Upgrade Your Codes

cd ~/go-etherzero && git pull && cd -

2, Compile Your Codes

cd ~/go-etherzero && make && cd -

3, Reboot Geth Procedure

3.1 Kill old procedure

ps aux  | grep geth

image

ps aux  | grep geth  | grep -v grep | awk '{print $2}' | xargs  kill

3.2 Make sure old procedure not exist

ps aux  | grep geth  | grep -v grep

image

3.3 Reboot your geth procedure

  • 'your address' should be a real address existed in Etherzero
  • This is only for mastenode ,if you are not masternode,there is no need to setting up '--etherbase' and '--masternode'
nohup ~/go-etherzero/build/bin/geth --maxpeers 100 --syncmode full --masternode    --etherbase "your address'"  >> output.log 2>&1 &
~/go-etherzero/build/bin/geth attach  --exec "miner.start()"

How to Verify Whether Upgrade Success Or Not

~/go-etherzero/build/bin/geth attach --exec "web3.version.node"

Outputs:

"Geth/v2.0.3-unstable-7f4160ed/linux-amd64/go1.10.1"
  • v2.0.3 is the latest version code.