From 06a09f25c4f625553053d93eab666827097fafd6 Mon Sep 17 00:00:00 2001 From: Antioch Peverell Date: Fri, 11 Sep 2020 11:07:57 +0100 Subject: [PATCH] bump protocol version to 1000 to facilitate deprecation of earlier versions (#3434) --- core/src/global.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/global.rs b/core/src/global.rs index 750378fb6..5d2732b0d 100644 --- a/core/src/global.rs +++ b/core/src/global.rs @@ -45,7 +45,7 @@ use util::OneTime; /// Note: We also use a specific (possible different) protocol version /// for both the backend database and MMR data files. /// This defines the p2p layer protocol version for this node. -pub const PROTOCOL_VERSION: ProtocolVersion = ProtocolVersion(3); +pub const PROTOCOL_VERSION: ProtocolVersion = ProtocolVersion(1_000); /// Automated testing edge_bits pub const AUTOMATED_TESTING_MIN_EDGE_BITS: u8 = 10;