aboutsummaryrefslogtreecommitdiff
path: root/test/functional/mining_basic.py
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2023-07-22 01:04:57 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2023-07-22 01:29:11 +0000
commit5e3e83b005518659a69916c373b808da27e51791 (patch)
tree864e14b4868d2d27b135c2a1b796fc01184c886e /test/functional/mining_basic.py
parentde319c61759952318364fbcb28c47f0959d89d0e (diff)
downloadbitcoin-5e3e83b005518659a69916c373b808da27e51791.tar.xz
RPC/Mining: Document template_request better for getblocktemplate
Diffstat (limited to 'test/functional/mining_basic.py')
-rwxr-xr-xtest/functional/mining_basic.py2
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)