diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2023-07-22 01:04:57 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2023-07-22 01:29:11 +0000 |
commit | 5e3e83b005518659a69916c373b808da27e51791 (patch) | |
tree | 864e14b4868d2d27b135c2a1b796fc01184c886e /test | |
parent | de319c61759952318364fbcb28c47f0959d89d0e (diff) |
RPC/Mining: Document template_request better for getblocktemplate
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/mining_basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mining_basic.py b/test/functional/mining_basic.py index 56cd615dac..da796d3f70 100755 --- a/test/functional/mining_basic.py +++ b/test/functional/mining_basic.py @@ -172,7 +172,7 @@ class MiningTest(BitcoinTestFramework): block.vtx = [coinbase_tx] self.log.info("getblocktemplate: segwit rule must be set") - assert_raises_rpc_error(-8, "getblocktemplate must be called with the segwit rule set", node.getblocktemplate) + assert_raises_rpc_error(-8, "getblocktemplate must be called with the segwit rule set", node.getblocktemplate, {}) self.log.info("getblocktemplate: Test valid block") assert_template(node, block, None) |