Upgrading the Chain
Start the Network
Start the network and trigger upgrade after the the proposal has passed.
# start a gaia application full-node
$ crossfid start
# set up the cli config
$ crossfid config trust-node true
$ crossfid config chain-id testing
# create an upgrade governance proposal
$ crossfid tx gov submit-proposal software-upgrade
\
--title
--description
\
--from --upgrade-height --deposit 10000000mpx
# once the proposal passes you can query the pending plan
$ crossfid query upgrade plan
Performing an upgrade
Assuming the proposal passes the chain will stop at given upgrade height.
You can stop and start the original binary all you want, but it will refuse to run after the upgrade height.
We need a new binary with the upgrade handler installed. The logs should look something like:
E[2019-11-05|12:44:18.913] UPGRADE "
" NEEDED at height: : module=main
E[2019-11-05|12:44:18.914] CONSENSUS FAILURE!!!
...
Note that the process will hang indefinitely (doesn't exit to avoid restart loops). So, you must manually kill the process and replace it with a new binary. Do so now with Ctrl+C
or killall crossfid
.
In gaia/app/app.go
, after upgrade.Keeper
is initialized and set in the app, set the corresponding upgrade Handler
with the correct
:
app.upgradeKeeper.SetUpgradeHandler("
", func(ctx sdk.Context, plan upgrade.Plan) {
// custom logic after the network upgrade has been executed
})
You will recieve a panic on any error - this would cause the upgrade to fail if the migration could not be run, and no node would advance - allowing a manual recovery. If we ignored the errors, then we would proceed with an incomplete upgrade and have a very difficult time every recovering the proper state.
Compile the New Binary
Now, compile the new binary and run the upgraded code to complete the upgrade:
# create a new binary of gaia with the added upgrade handler
$ make install
# Restart the chain using the new binary. You should see the chain resume from
# the upgrade height:
# `I[2019-11-05|12:48:15.184] applying upgrade
at height: module=main`
$ crossfid start
# verify there is no pending plan
$ crossfid query upgrade plan
# verify you can query the block header of the completed upgrade
$ crossfid query upgrade applied