diff options
author | Conor Scott <conor.r.scott.88@gmail.com> | 2018-07-30 10:03:20 +0200 |
---|---|---|
committer | Conor Scott <conor.r.scott.88@gmail.com> | 2018-08-09 12:58:35 +0200 |
commit | 157651855f91c3c093c27290a349a231ac5ba740 (patch) | |
tree | a61b17615865bcfee8a9f42547d98f9494f42674 /test/functional/mempool_resurrect.py | |
parent | df9f71274645a917e2578c52a1c59745bce8112d (diff) |
[Tests] Rename create_tx and move to blocktools.py
Diffstat (limited to 'test/functional/mempool_resurrect.py')
-rwxr-xr-x | test/functional/mempool_resurrect.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/functional/mempool_resurrect.py b/test/functional/mempool_resurrect.py index 1c8028dd74..3625e011eb 100755 --- a/test/functional/mempool_resurrect.py +++ b/test/functional/mempool_resurrect.py @@ -5,6 +5,7 @@ """Test resurrection of mined transactions when the blockchain is re-organized.""" from test_framework.test_framework import BitcoinTestFramework +from test_framework.blocktools import create_raw_transaction from test_framework.util import * # Create one-input, one-output, no-fee transaction: @@ -27,13 +28,13 @@ class MempoolCoinbaseTest(BitcoinTestFramework): b = [ self.nodes[0].getblockhash(n) for n in range(1, 4) ] coinbase_txids = [ self.nodes[0].getblock(h)['tx'][0] for h in b ] - spends1_raw = [ create_tx(self.nodes[0], txid, node0_address, 49.99) for txid in coinbase_txids ] + spends1_raw = [ create_raw_transaction(self.nodes[0], txid, node0_address, 49.99) for txid in coinbase_txids ] spends1_id = [ self.nodes[0].sendrawtransaction(tx) for tx in spends1_raw ] blocks = [] blocks.extend(self.nodes[0].generate(1)) - spends2_raw = [ create_tx(self.nodes[0], txid, node0_address, 49.98) for txid in spends1_id ] + spends2_raw = [ create_raw_transaction(self.nodes[0], txid, node0_address, 49.98) for txid in spends1_id ] spends2_id = [ self.nodes[0].sendrawtransaction(tx) for tx in spends2_raw ] blocks.extend(self.nodes[0].generate(1)) |