diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-08-29 12:42:46 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-08-29 13:06:02 -0400 |
commit | fa782a308dbe7bc579c122f63c1c65666fc85e91 (patch) | |
tree | b243c96fd5a847162757b293f9e08b0bc559bd74 /test/functional/mining_basic.py | |
parent | b4d33096734d787b0e1d754064039cbb64ce8d61 (diff) |
qa: Use named args in some tests
Diffstat (limited to 'test/functional/mining_basic.py')
-rwxr-xr-x | test/functional/mining_basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mining_basic.py b/test/functional/mining_basic.py index 15b2d7f757..b675cd882f 100755 --- a/test/functional/mining_basic.py +++ b/test/functional/mining_basic.py @@ -188,7 +188,7 @@ class MiningTest(BitcoinTestFramework): # Should ask for the block from a p2p node, if they announce the header as well: node.add_p2p_connection(P2PDataStore()) node.p2p.wait_for_getheaders(timeout=5) # Drop the first getheaders - node.p2p.send_blocks_and_test(blocks=[block], rpc=node) + node.p2p.send_blocks_and_test(blocks=[block], node=node) # Must be active now: assert chain_tip(block.hash, status='active', branchlen=0) in node.getchaintips() |