diff options
author | Anthony Towns <aj@erisian.com.au> | 2021-11-14 08:44:40 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2022-01-15 04:37:56 +1000 |
commit | 376c0c6dae2bebbb3e1352377e71fb1996d09f64 (patch) | |
tree | 7c883d84318aa9eeb18fc13b12d1394fc7470ba5 /test/functional/rpc_blockchain.py | |
parent | a7469bcd35692d56f57e91b3f21d30855bdf6531 (diff) |
rpc: getdeploymentinfo: include block hash/height
Diffstat (limited to 'test/functional/rpc_blockchain.py')
-rwxr-xr-x | test/functional/rpc_blockchain.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/rpc_blockchain.py b/test/functional/rpc_blockchain.py index 2498543bbe..0e560abc49 100755 --- a/test/functional/rpc_blockchain.py +++ b/test/functional/rpc_blockchain.py @@ -177,6 +177,8 @@ class BlockchainTest(BitcoinTestFramework): assert height >= 144 and height <= 287 assert_equal(gdi_result, { + "hash": blockhash, + "height": height, "deployments": { 'bip34': {'type': 'buried', 'active': True, 'height': 2}, 'bip66': {'type': 'buried', 'active': True, 'height': 3}, |