RC 0.10.3
Please see RC-0.10.0 for all the instructions and details when moving from RC-0.9.X to RC-0.10.X
- tl;dr I'm a node runner upgrading from RC-0.9.X to RC-0.10.X
- What's Changed
- New Snapshots
- New Homebrew Formula
tl;dr I'm a node runner upgrading from RC-0.9.X to RC-0.10.X
Update your configs like so:
- Set
client_session_sync_allowance
to a value> 0
inpocket_config
to support session rollovers - Double the memory configs in your mempool to support larger blocks (i.e. 8MB instead of 4MB)
For example:
"Mempool": {
"RootDir": "/home/app/.pocket",
"Recheck": true,
"Broadcast": true,
"WalPath": "",
- "Size": 9000,
- "MaxTxsBytes": 1073741824,
- "CacheSize": 9000,
- "MaxTxBytes": 1048576
+ "Size": 18000,
+ "MaxTxsBytes": 2147483648,
+ "CacheSize": 18000,
+ "MaxTxBytes": 2097152
},
What's Changed
- Revert Mainnet genesis file changes from #1535 by @PoktBlade in #1566
- Update default session sync allowance by @PoktBlade in #1560
New Snapshots
New snapshots available thanks to the team at Liquify LTD at doc/guides/snapshot.md.
New Homebrew Formula
brew tap pokt-network/pocket-core
brew upgrade pokt-network/pocket-core/pocket
Full Changelog: RC-0.10.0...RC-0.10.3