diff options
author | Anthony Towns <aj@erisian.com.au> | 2021-03-06 18:18:49 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2021-04-12 11:14:49 +1000 |
commit | 73d4a706393e6dbd6b6d6b6428f8d3233ac0a2d8 (patch) | |
tree | d187f08c276e57a617c3e9eee6c635890e3873a6 /test | |
parent | 9e6b65f6fa205eee5c3b99343988adcb8d320460 (diff) |
versionbits: Add support for delayed activation
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/rpc_blockchain.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/rpc_blockchain.py b/test/functional/rpc_blockchain.py index e090030205..821409ccc1 100755 --- a/test/functional/rpc_blockchain.py +++ b/test/functional/rpc_blockchain.py @@ -149,6 +149,7 @@ class BlockchainTest(BitcoinTestFramework): 'count': 57, 'possible': True, }, + 'min_activation_height': 0, }, 'active': False }, @@ -158,7 +159,8 @@ class BlockchainTest(BitcoinTestFramework): 'status': 'active', 'start_time': -1, 'timeout': 9223372036854775807, - 'since': 0 + 'since': 0, + 'min_activation_height': 0, }, 'height': 0, 'active': True |