diff --git a/qa/rpc-tests/test_framework/mininode.py b/qa/rpc-tests/test_framework/mininode.py index 6019b6423..bf775b409 100755 --- a/qa/rpc-tests/test_framework/mininode.py +++ b/qa/rpc-tests/test_framework/mininode.py @@ -42,7 +42,7 @@ from util import hex_str_to_bytes, bytes_to_hex_str BIP0031_VERSION = 60000 -MY_VERSION = 180008 # past bip-31 for ping/pong +MY_VERSION = 180009 # past bip-31 for ping/pong MY_SUBVERSION = "/python-mininode-tester:0.0.1/" MAX_INV_SZ = 50000 diff --git a/src/masternode-payments.h b/src/masternode-payments.h index f294bb9e2..de724cf6b 100644 --- a/src/masternode-payments.h +++ b/src/masternode-payments.h @@ -24,8 +24,8 @@ static const int MNPAYMENTS_SIGNATURES_TOTAL = 8; // vote for masternode and be elected as a payment winner // V1 - Last protocol version before update // V2 - Newest protocol version -static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 180007; -static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 180008; +static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 180008; +static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 180009; extern CCriticalSection cs_vecPayees; extern CCriticalSection cs_mapMasternodeBlocks;