v1.9
Secret Network v1.9 Instructions
β οΈ IMPORTANT NOTES β οΈ
Upgrading Manually
2:00PM ERR UPGRADE "v1.9" NEEDED at height: 8861800:
2:00PM ERR CONSENSUS FAILURE!!! err="UPGRADE \"v1.9\" NEEDED at height: 8861800# Backup your node's SGX secrets
cp -a /opt/secret/.sgx_secrets ~/sgx_secrets_backup
mkdir 18backup
cp ~/.secretd/.node/* 18backup/
# Figure out currently used db backend
DB_BACKEND=$(awk -F \" '/^db_backend =/{print $2}' ~/.secretd/config/config.toml)
# Get the v1.9 binaries
wget "https://github.com/scrtlabs/SecretNetwork/releases/download/v1.9.0/secretnetwork_1.9.0_mainnet_${DB_BACKEND}_amd64.deb"
# Verify the v1.9 binaries
echo '239ee0f4956a8dc6bbe17312861a67d12efa92bd03f653ed59fbac360e8aa676 secretnetwork_1.9.0_mainnet_goleveldb_amd64.deb
785a4863d7ab83ae83d30da07352de3542f492f5be45fdd3a7d34b960b5be44d secretnetwork_1.9.0_mainnet_rocksdb_amd64.deb' |
grep "$DB_BACKEND" |
sha256sum --check
# Stop the v1.8 node
sudo systemctl stop secret-node
# Install the v1.9 binaries
sudo apt install -y "./secretnetwork_1.9.0_mainnet_${DB_BACKEND}_amd64.deb"
# re-apply any systemd unit file customizations
# Restart the node
sudo systemctl restart secret-nodeUpgrading Automatically Using Cosmovisor
Details of Upgrade Time
In Case of an Upgrade Failure
Last updated
Was this helpful?