aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/fundrawtransaction.py
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-01-23 13:22:32 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2017-01-23 14:02:54 +0100
commit5cf3c60fccb198c16819fcf8a0c5635b5b630496 (patch)
tree27b9895584ceaff9e65ab1f4be0c65aa5dcfe476 /qa/rpc-tests/fundrawtransaction.py
parent78849564144e073802a3858b953e2026e27d3047 (diff)
parent5cdf10611fe5ea77d4632c24e69e68aa9b8119e0 (diff)
downloadbitcoin-5cf3c60fccb198c16819fcf8a0c5635b5b630496.tar.xz
Merge #9607: Remove redundant semicolons in Python code
5cdf106 Remove redundant semicolons in Python code (practicalswift)
Diffstat (limited to 'qa/rpc-tests/fundrawtransaction.py')
-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 b279c0b9d6..7396ba46a4 100755
--- a/qa/rpc-tests/fundrawtransaction.py
+++ b/qa/rpc-tests/fundrawtransaction.py
@@ -226,7 +226,7 @@ class RawTransactionsTest(BitcoinTestFramework):
assert(False)
rawtxfund = self.nodes[2].fundrawtransaction(rawtx, {'changeAddress': change, 'changePosition': 0})
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
- out = dec_tx['vout'][0];
+ out = dec_tx['vout'][0]
assert_equal(change, out['scriptPubKey']['addresses'][0])