diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 25c68de61a..4b35c3f548 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1358,6 +1358,7 @@ UniValue getblockchaininfo(const JSONRPCRequest& request) BuriedForkDescPushBack(softforks, "dakota", consensusParams.DakotaHeight); BuriedForkDescPushBack(softforks, "dakotacrescent", consensusParams.DakotaCrescentHeight); BuriedForkDescPushBack(softforks, "eunos", consensusParams.EunosHeight); + BuriedForkDescPushBack(softforks, "eunospaya", consensusParams.EunosPayaHeight); BIP9SoftForkDescPushBack(softforks, "testdummy", consensusParams, Consensus::DEPLOYMENT_TESTDUMMY); obj.pushKV("softforks", softforks); diff --git a/test/functional/rpc_blockchain.py b/test/functional/rpc_blockchain.py index 9aac53cf98..51662ce517 100755 --- a/test/functional/rpc_blockchain.py +++ b/test/functional/rpc_blockchain.py @@ -130,6 +130,7 @@ def _test_getblockchaininfo(self): 'dakota': {'type': 'buried', 'active': False, 'height': 10000000}, 'dakotacrescent': {'type': 'buried', 'active': False, 'height': 10000000}, 'eunos': {'type': 'buried', 'active': False, 'height': 10000000}, + 'eunospaya': {'type': 'buried', 'active': False, 'height': 10000000}, 'testdummy': { 'type': 'bip9', 'bip9': {