diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-01-12 17:39:50 +0100 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-01-13 18:55:03 +0100 |
commit | ac4a0953060e34ddd8f4bd7aa28c719d8ed2c068 (patch) | |
tree | 33e09113685baac158deb2065f552d8b21241289 /qa/rpc-tests/wallet.py | |
parent | 5754e0341b7c033d4caf99534aca47e9981bd7ed (diff) |
Remove unused Python variables
Diffstat (limited to 'qa/rpc-tests/wallet.py')
-rwxr-xr-x | qa/rpc-tests/wallet.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qa/rpc-tests/wallet.py b/qa/rpc-tests/wallet.py index f325ecb4a3..c82e0adffa 100755 --- a/qa/rpc-tests/wallet.py +++ b/qa/rpc-tests/wallet.py @@ -359,7 +359,6 @@ class WalletTest (BitcoinTestFramework): rawtx = self.nodes[0].createrawtransaction([{"txid":singletxid, "vout":0}], {chain_addrs[0]:node0_balance/2-Decimal('0.01'), chain_addrs[1]:node0_balance/2-Decimal('0.01')}) signedtx = self.nodes[0].signrawtransaction(rawtx) singletxid = self.nodes[0].sendrawtransaction(signedtx["hex"]) - txids = [singletxid, singletxid] self.nodes[0].generate(1) # Make a long chain of unconfirmed payments without hitting mempool limit |