From ecf544d062cb610f579c6c50e8db46b0bce284e0 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 5 Apr 2018 12:07:44 +0100 Subject: [PATCH] Set Overwinter protocol version to 170005 170004 is the protocol version for the NODE_BLOOM change, which is being "released" in this RC. The activation height is being set in the final release, which means that we may end up with both RC and final release versions online when Overwinter activates. Bumping the protocol version for Overwinter enables RC nodes to be correctly disconnected. --- src/chainparams.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 407296824..4806dcfc5 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -101,7 +101,7 @@ public: consensus.vUpgrades[Consensus::UPGRADE_TESTDUMMY].nProtocolVersion = 170002; consensus.vUpgrades[Consensus::UPGRADE_TESTDUMMY].nActivationHeight = Consensus::NetworkUpgrade::NO_ACTIVATION_HEIGHT; - consensus.vUpgrades[Consensus::UPGRADE_OVERWINTER].nProtocolVersion = 170004; + consensus.vUpgrades[Consensus::UPGRADE_OVERWINTER].nProtocolVersion = 170005; consensus.vUpgrades[Consensus::UPGRADE_OVERWINTER].nActivationHeight = Consensus::NetworkUpgrade::NO_ACTIVATION_HEIGHT;