diff options
author | Conor Scott <conor.r.scott.88@gmail.com> | 2018-07-30 10:16:40 +0200 |
---|---|---|
committer | Conor Scott <conor.r.scott.88@gmail.com> | 2018-08-09 12:58:36 +0200 |
commit | 736f9414246f2a855e7b6fc57c8f903e60530540 (patch) | |
tree | 4a2ff2b6cc647e36d1c4ec96523950047c2c25c2 /test/functional/p2p_unrequested_blocks.py | |
parent | 157651855f91c3c093c27290a349a231ac5ba740 (diff) |
[Tests] Cleanup extra instances of create_transaction
Diffstat (limited to 'test/functional/p2p_unrequested_blocks.py')
-rwxr-xr-x | test/functional/p2p_unrequested_blocks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/p2p_unrequested_blocks.py b/test/functional/p2p_unrequested_blocks.py index 0c5d8f3a3f..b15e2774c4 100755 --- a/test/functional/p2p_unrequested_blocks.py +++ b/test/functional/p2p_unrequested_blocks.py @@ -55,7 +55,7 @@ from test_framework.mininode import * from test_framework.test_framework import BitcoinTestFramework from test_framework.util import * import time -from test_framework.blocktools import create_block, create_coinbase, create_transaction +from test_framework.blocktools import create_block, create_coinbase, create_tx_with_script class AcceptBlockTest(BitcoinTestFramework): @@ -244,7 +244,7 @@ class AcceptBlockTest(BitcoinTestFramework): block_290f.solve() block_291 = create_block(block_290f.sha256, create_coinbase(291), block_290f.nTime+1) # block_291 spends a coinbase below maturity! - block_291.vtx.append(create_transaction(block_290f.vtx[0], 0, b"42", 1)) + block_291.vtx.append(create_tx_with_script(block_290f.vtx[0], 0, script_sig=b"42", amount=1)) block_291.hashMerkleRoot = block_291.calc_merkle_root() block_291.solve() block_292 = create_block(block_291.sha256, create_coinbase(292), block_291.nTime+1) |