Skip to content

Commit 8106b7c

Browse files
committed
NEW: SPORK 16 - minimal masternode protocol
- Designed for smooth rollout of newer MNs - Updated 70208 as minimal version for MN payments - SPORK10 is also considered (the max of SPORK10 and SPORK16 are used)
1 parent 7e96b9d commit 8106b7c

5 files changed

+13
-4
lines changed

src/masternode-payments.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -305,9 +305,11 @@ void CMasternodePayments::FillBlockPayee(CMutableTransaction& txNew, int nBlockH
305305
}
306306

307307
int CMasternodePayments::GetMinMasternodePaymentsProto() const {
308-
return sporkManager.IsSporkActive(SPORK_10_MASTERNODE_PAY_UPDATED_NODES)
308+
int spork10 = sporkManager.IsSporkActive(SPORK_10_MASTERNODE_PAY_UPDATED_NODES)
309309
? MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2
310310
: MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1;
311+
int spork16 = sporkManager.GetSporkValue(SPORK_16_MASTERNODE_MIN_PROTOCOL);
312+
return std::max(spork10, spork16);
311313
}
312314

313315
void CMasternodePayments::ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStream& vRecv, CConnman& connman)

src/masternode-payments.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ static const int MNPAYMENTS_SIGNATURES_TOTAL = 10;
2323
// vote for masternode and be elected as a payment winner
2424
// V1 - Last protocol version before update
2525
// V2 - Newest protocol version
26-
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 70206;
26+
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 70208;
2727
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 70210;
2828

2929
extern CCriticalSection cs_vecPayees;

src/spork.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ std::map<int, int64_t> mapSporkDefaults = {
2727
{SPORK_12_RECONSIDER_BLOCKS, 0}, // 0 BLOCKS
2828
{SPORK_14_REQUIRE_SENTINEL_FLAG, 1545415606ULL}, // ON
2929
{SPORK_15_FIRST_POS_BLOCK, 999999ULL}, // OFF
30+
{SPORK_16_MASTERNODE_MIN_PROTOCOL, MIN_PEER_PROTO_VERSION }, // Actual
3031
};
3132

3233
void CSporkManager::ProcessSpork(CNode* pfrom, const std::string& strCommand, CDataStream& vRecv, CConnman& connman)
@@ -172,6 +173,7 @@ int CSporkManager::GetSporkIDByName(const std::string& strName)
172173
if (strName == "SPORK_12_RECONSIDER_BLOCKS") return SPORK_12_RECONSIDER_BLOCKS;
173174
if (strName == "SPORK_14_REQUIRE_SENTINEL_FLAG") return SPORK_14_REQUIRE_SENTINEL_FLAG;
174175
if (strName == "SPORK_15_FIRST_POS_BLOCK") return SPORK_15_FIRST_POS_BLOCK;
176+
if (strName == "SPORK_16_MASTERNODE_MIN_PROTOCOL") return SPORK_16_MASTERNODE_MIN_PROTOCOL;
175177

176178
LogPrint("spork", "CSporkManager::GetSporkIDByName -- Unknown Spork name '%s'\n", strName);
177179
return -1;
@@ -190,6 +192,7 @@ std::string CSporkManager::GetSporkNameByID(int nSporkID)
190192
case SPORK_12_RECONSIDER_BLOCKS: return "SPORK_12_RECONSIDER_BLOCKS";
191193
case SPORK_14_REQUIRE_SENTINEL_FLAG: return "SPORK_14_REQUIRE_SENTINEL_FLAG";
192194
case SPORK_15_FIRST_POS_BLOCK: return "SPORK_15_FIRST_POS_BLOCK";
195+
case SPORK_16_MASTERNODE_MIN_PROTOCOL: return "SPORK_16_MASTERNODE_MIN_PROTOCOL";
193196
default:
194197
LogPrint("spork", "CSporkManager::GetSporkNameByID -- Unknown Spork ID %d\n", nSporkID);
195198
return "Unknown";

src/spork.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ static const int SPORK_9_SUPERBLOCKS_ENABLED = 10008;
2626
static const int SPORK_10_MASTERNODE_PAY_UPDATED_NODES = 10009;
2727
static const int SPORK_12_RECONSIDER_BLOCKS = 10011;
2828
static const int SPORK_14_REQUIRE_SENTINEL_FLAG = 10013;
29-
static const int SPORK_15_FIRST_POS_BLOCK = 10015;
29+
static const int SPORK_15_FIRST_POS_BLOCK = 10014;
30+
static const int SPORK_16_MASTERNODE_MIN_PROTOCOL = 10015;
3031

3132
static const int SPORK_START = SPORK_2_INSTANTSEND_ENABLED;
32-
static const int SPORK_END = SPORK_15_FIRST_POS_BLOCK;
33+
static const int SPORK_END = SPORK_16_MASTERNODE_MIN_PROTOCOL;
3334

3435
extern std::map<int, int64_t> mapSporkDefaults;
3536
extern std::map<uint256, CSporkMessage> mapSporks;

src/version.h

+3
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,7 @@ static const int DIP0001_PROTOCOL_VERSION = 70208;
4444
//! short-id-based block download starts with this version
4545
static const int SHORT_IDS_BLOCKS_VERSION = 70209;
4646

47+
//! Proof-of-Stake protocol version
48+
static const int PROOF_OF_STAKE_VERSION = 70210;
49+
4750
#endif // BITCOIN_VERSION_H

0 commit comments

Comments
 (0)