Skip to content

Commit

Permalink
Merge pull request #2344 from blockstack/fix/peer-versions
Browse files Browse the repository at this point in the history
Fix: peer version to 0x18 rather than 0x17
  • Loading branch information
kantai authored Jan 14, 2021
2 parents fd9336c + 0b483cd commit 7b83c6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub use self::mempool::MemPoolDB;
pub const SYSTEM_FORK_SET_VERSION: [u8; 4] = [23u8, 0u8, 0u8, 0u8];

// p2p network version
pub const PEER_VERSION: u32 = 0x17000000; // 23.0.0.0
pub const PEER_VERSION: u32 = 0x18000000; // 24.0.0.0

// network identifiers
pub const NETWORK_ID_MAINNET: u32 = 0x17000000;
Expand Down

0 comments on commit 7b83c6f

Please sign in to comment.