LaurenceIO released this 13 hours ago
This point release is a recommended upgrade for all stake pool operators. It is not required for relays or other passive nodes. It ensures that block producing nodes do not unnecessarily re-evaluate the stake distribution at the epoch boundary.
Changes
- Do not force the evaluation of the Mark snapshot - leave this as a thunk (#2614)
Fixed Issues
- Stake pools unnecessarily evaluate the stake distribution at the epoch boundary (#2616)
How to update to 1.26.2
bofore to start it’s better also to update the server
sudo apt-get update
sudo apt-get upgrade
sudo reboot (not mandatory, the reboot was performed last update)
UPDATE STEPS to 1.26.2
Few recommendation before to start:
-
perform a snapshot for server (if u have this option offered by your provider) before to start the update
-
update the Relay first
-
STEP 1 - building the node
stop the node :
sudo systemctl stop cnode
build the node
cd ~/git
sudo rm -R cardano-node
git clone https://github.com/input-output-hk/cardano-node
cd cardano-node
git fetch --tags --all
git checkout 1.26.2
echo -e "package cardano-crypto-praos\n flags: -external-libsodium-vrf" > cabal.project.local
$CNODE_HOME/scripts/cabal-build-all.sh
after 30-40 minutes:
/opt/cardano/cnode/scripts$ cardano-node --version
cardano-node 1.26.2 - linux-x86_64 - ghc-8.10
git rev 3531289c9f79eab7ac5d3272ce6e6821504fec4c
/opt/cardano/cnode/scripts$ cardano-cli --version
cardano-cli 1.26.2 - linux-x86_64 - ghc-8.10
git rev 3531289c9f79eab7ac5d3272ce6e6821504fec4c
now you can start the node
sudo systemctl restart cnode
#check the status
sudo systemctl status cnode
start glive let it sync and u should see:
Thank you,