Highlights
- Use all available cores to serve queries.
- Mainnet docker image with automatic node registration & state sync (docs).
- Mempool optimizations (Thanks @ValarDragon!). For more info see this.
- Fix missing
libsnappy1v5
dependency for rocksdb deb package. - Updated
${LCD_URL}/swagger/
for v1.3 and added${LCD_URL}/openapi/
.
Full Changelog: v1.3.0...v1.3.1
Upgrading from v1.3.0
Check what database type you're currently using:
awk -F \" '/^db_backend =/{print $2}' ~/.secretd/config/config.toml
Uncomment and download the right binary based on your database type:
# Stop the v1.3.0 node
sudo systemctl stop secret-node
# Get & verify secretd v1.3.1
# goleveldb
# wget "https://github.com/scrtlabs/SecretNetwork/releases/download/v1.3.1/secretnetwork_1.3.1_mainnet_goleveldb_amd64.deb"
# echo "3b501e572ab6021df3371d5fae73952cd6fc5a85b726310cf32a000f4c093207 secretnetwork_1.3.1_mainnet_goleveldb_amd64.deb" | sha256sum --check
# rocksdb
# wget "https://github.com/scrtlabs/SecretNetwork/releases/download/v1.3.1/secretnetwork_1.3.1_mainnet_rocksdb_amd64.deb"
# echo "dcf58f7fed86c50d52596e58ae2643b439dd171820e6e9f89241a2482242210e secretnetwork_1.3.1_mainnet_rocksdb_amd64.deb" | sha256sum --check
# Install v1.3.1 binaries
sudo apt install -y ./secretnetwork_1.3.1_mainnet_*.deb
# Restart the node
sudo systemctl restart secret-node
Note: Upgrading is recommended to all node types (especially validators) due to the new mempool features.