Binaries - Upgrading Your Node
Pundi AIFX Network Upgrades
For more information on past upgrades and instructions, refer to Upgrade Versions.
You may refer to this Countdown Timer which will countdown the time till the upgrade height.
Upgrade steps
Ensure you have stopped the node❗
sudo systemctl stop fxcoredps -ef | grep fxcored
kill -9 <PID>2. Get the latest fxcored binary
Pulling the latest fx-core code base (ensure that you are in the fx-core folder):
git pullCheckout the branch of the upgrade version:
git checkout <upgradeable version branch>for example:
git checkout release/v8.6.x
or
git checkout tags/v8.6.1Update fxcored (ensure that you are in the fx-core folder):
make installCross reference the latest commit hash to the commit in our official github page:
fxcored version3. Update config files
fxcored config update4. Restart the node:
sudo systemctl restart fxcored5. Check whether the node is participating in consensus:
cat $HOME/.fxcore/data/priv_validator_state.jsonIt should return something similar to the following:
{
"height": "347450",
"round": 0,
"step": 3,
"signature": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"signbytes": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}Last updated