aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-06-03 19:07:08 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-06-06 19:40:35 +0200
commitfaf82e8fc819b2f1f8b60983ac72cb111c47e8ba (patch)
treecfc1184675887875aa874b3fd25d452844ec2235 /qa
parent52c3f348bec33fab5ae0a9f1b9f14b9a74c0083f (diff)
downloadbitcoin-faf82e8fc819b2f1f8b60983ac72cb111c47e8ba.tar.xz
[rpc] fundrawtransaction: Fix help text and interface
Diffstat (limited to 'qa')
-rwxr-xr-xqa/rpc-tests/fundrawtransaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/fundrawtransaction.py b/qa/rpc-tests/fundrawtransaction.py
index 5c11d3ab18..3040752dcb 100755
--- a/qa/rpc-tests/fundrawtransaction.py
+++ b/qa/rpc-tests/fundrawtransaction.py
@@ -681,7 +681,7 @@ class RawTransactionsTest(BitcoinTestFramework):
inputs = []
outputs = {self.nodes[2].getnewaddress() : 1}
rawtx = self.nodes[3].createrawtransaction(inputs, outputs)
- result = self.nodes[3].fundrawtransaction(rawtx, )
+ result = self.nodes[3].fundrawtransaction(rawtx) # 1000 sat via settxfee
result2 = self.nodes[3].fundrawtransaction(rawtx, {"feeRate": 2000})
result3 = self.nodes[3].fundrawtransaction(rawtx, {"feeRate": 10000})
assert_equal(result['fee']*2, result2['fee'])