From 85cecf8261a8239b251319618b99a849a23cba65 Mon Sep 17 00:00:00 2001 From: dismad <81990132+dismad@users.noreply.github.com> Date: Sat, 29 Nov 2025 19:53:16 -0800 Subject: [PATCH] Update constants.rs --- src/protocol/message/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol/message/constants.rs b/src/protocol/message/constants.rs index fbe0d1b1..5f273b20 100644 --- a/src/protocol/message/constants.rs +++ b/src/protocol/message/constants.rs @@ -12,7 +12,7 @@ pub const HEADER_LEN: usize = 24; pub const MAX_MESSAGE_LEN: usize = 2 * 1024 * 1024; /// The current network protocol version number. -pub const PROTOCOL_VERSION: u32 = 170_120; +pub const PROTOCOL_VERSION: u32 = 170_140; /// The current network version identifier. pub const MAGIC_TESTNET: [u8; MAGIC_LEN] = [0xfa, 0x1a, 0xf9, 0xbf]; pub const MAGIC_MAINNET: [u8; MAGIC_LEN] = [0x24, 0xe9, 0x27, 0x64];