Skip to content

Commit 099539b

Browse files
authored
Merge pull request #4689 from stacks-network/hotfix/fix-2.5-peer-version
oops, also fix peer version
2 parents 5d24904 + 8b0a314 commit 099539b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stackslib/src/core/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub const PEER_VERSION_EPOCH_3_0: u8 = 0x0b;
6161

6262
// this should be updated to the latest network epoch version supported by
6363
// this node. this will be checked by the `validate_epochs()` method.
64-
pub const PEER_NETWORK_EPOCH: u32 = PEER_VERSION_EPOCH_3_0 as u32;
64+
pub const PEER_NETWORK_EPOCH: u32 = PEER_VERSION_EPOCH_2_5 as u32;
6565

6666
// set the fourth byte of the peer version
6767
pub const PEER_VERSION_MAINNET: u32 = PEER_VERSION_MAINNET_MAJOR | PEER_NETWORK_EPOCH;

0 commit comments

Comments
 (0)