diff --git a/CHANGELOG.md b/CHANGELOG.md index d2b396d3df4..08ef3bcd0ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ for replicating Zebra's best chain state, and a gRPC server in `zebra-rpc` as st ### Changed - Reduced the end-of-support halt time from 16 weeks to 10 weeks ([#8734](https://github.com/ZcashFoundation/zebra/pull/8734)) +- Bumps the current protocol version from 170100 to 170110 ([#8734](https://github.com/ZcashFoundation/zebra/pull/8734)) ### Fixed diff --git a/zebra-network/src/constants.rs b/zebra-network/src/constants.rs index d937e64729a..07bca61d63a 100644 --- a/zebra-network/src/constants.rs +++ b/zebra-network/src/constants.rs @@ -337,7 +337,7 @@ pub const TIMESTAMP_TRUNCATION_SECONDS: u32 = 30 * 60; /// /// The current protocol version typically changes before Mainnet and Testnet /// network upgrades. -pub const CURRENT_NETWORK_PROTOCOL_VERSION: Version = Version(170_100); +pub const CURRENT_NETWORK_PROTOCOL_VERSION: Version = Version(170_110); /// The default RTT estimate for peer responses. ///