diff options
author | Anthony Towns <aj@erisian.com.au> | 2021-12-01 17:46:21 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2022-01-15 04:37:56 +1000 |
commit | fd826130a0a4e67fdc26f8064f4ecb4ff79b3333 (patch) | |
tree | 1791e3fcff6b81eae66b4048230c4f24cefedc09 /test/functional/feature_dersig.py | |
parent | 7908772244b90884249da90e05f0044cc7d555dd (diff) |
rpc: move softfork info from getblockchaininfo to getdeploymentinfo
Diffstat (limited to 'test/functional/feature_dersig.py')
-rwxr-xr-x | test/functional/feature_dersig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_dersig.py b/test/functional/feature_dersig.py index b7cb32c842..1f57b15077 100755 --- a/test/functional/feature_dersig.py +++ b/test/functional/feature_dersig.py @@ -60,7 +60,7 @@ class BIP66Test(BitcoinTestFramework): return self.miniwallet.create_self_transfer(from_node=self.nodes[0], utxo_to_spend=utxo_to_spend)['tx'] def test_dersig_info(self, *, is_active): - assert_equal(self.nodes[0].getblockchaininfo()['softforks']['bip66'], + assert_equal(self.nodes[0].getdeploymentinfo()['deployments']['bip66'], { "active": is_active, "height": DERSIG_HEIGHT, |