From 3862e473f0cb71a762c0306b171b591341d58142 Mon Sep 17 00:00:00 2001 From: John Newbery Date: Mon, 20 May 2019 14:58:09 -0400 Subject: [rpc] Tidy up reporting of buried and ongoing softforks This combines reporting of buried (formally ISM) softfork deployments and BIP9 versionbits softfork deployments into one JSON object in the getblockchaininfo return object. --- test/functional/test_framework/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/test_framework/util.py') diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index efd962ea93..c25698fe89 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -344,7 +344,7 @@ def delete_cookie_file(datadir): def get_bip9_status(node, key): info = node.getblockchaininfo() - return info['bip9_softforks'][key] + return info['softforks'][key]['bip9'] def set_node_times(nodes, t): for node in nodes: -- cgit v1.2.3