aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/replace-by-fee.py
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-01-18 10:45:52 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2016-01-18 10:46:01 +0100
commit3ec5bb0a6e2ca3474fa90ce1d52a91a83b41a34c (patch)
tree68e6f64863b61a677593f837f03dbda0dd07582b /qa/rpc-tests/replace-by-fee.py
parent5e00147838b0585aebdfd7533951f8708639bc9b (diff)
parent7777994846cdb9b9cf69e391a33eeed30393bbcf (diff)
Merge pull request #7335
7777994 [qa] Fix pyton syntax in rpc tests (MarcoFalke)
Diffstat (limited to 'qa/rpc-tests/replace-by-fee.py')
-rwxr-xr-xqa/rpc-tests/replace-by-fee.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/qa/rpc-tests/replace-by-fee.py b/qa/rpc-tests/replace-by-fee.py
index 734db33b51..ba1956853a 100755
--- a/qa/rpc-tests/replace-by-fee.py
+++ b/qa/rpc-tests/replace-by-fee.py
@@ -54,8 +54,7 @@ def make_utxo(node, amount, confirmed=True, scriptPubKey=CScript([1])):
tx2.vout = [CTxOut(amount, scriptPubKey)]
tx2.rehash()
- tx2_hex = binascii.hexlify(tx2.serialize()).decode('utf-8')
- #print tx2_hex
+ binascii.hexlify(tx2.serialize()).decode('utf-8')
signed_tx = node.signrawtransaction(binascii.hexlify(tx2.serialize()).decode('utf-8'))