diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-05-06 12:20:50 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-05-06 12:21:01 +0200 |
commit | 170bc2c381f86a523de2fc8b71d62ade66303c0d (patch) | |
tree | e6728fff792cbeb0e329319ad2d5c2062ae9dd83 /test/functional/p2p-segwit.py | |
parent | 314ebdfcb38d4b4c977579f787d5e1a20d068c94 (diff) | |
parent | 3e3c22f09d37169fa88327323c3755be6dbd9a62 (diff) |
Merge #10318: [tests] fix wait_for_inv()
3e3c22f [tests] fix wait_for_inv() (John Newbery)
Tree-SHA512: b8070b8461e9c792cc3d9c17fd9d3faf87f550c7c0fc1788e0cd382f0794932b70cc87d480805a3b3c1ca2fdca9f8f1bcb9759300d777d9aaa8d41c016260d93
Diffstat (limited to 'test/functional/p2p-segwit.py')
-rwxr-xr-x | test/functional/p2p-segwit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/p2p-segwit.py b/test/functional/p2p-segwit.py index 93d42b3df0..24d4d37c42 100755 --- a/test/functional/p2p-segwit.py +++ b/test/functional/p2p-segwit.py @@ -916,9 +916,9 @@ class SegWitTest(BitcoinTestFramework): tx3.wit.vtxinwit[0].scriptWitness.stack = [ witness_program ] # Also check that old_node gets a tx announcement, even though this is # a witness transaction. - self.old_node.wait_for_inv(CInv(1, tx2.sha256)) # wait until tx2 was inv'ed + self.old_node.wait_for_inv([CInv(1, tx2.sha256)]) # wait until tx2 was inv'ed self.test_node.test_transaction_acceptance(tx3, with_witness=True, accepted=True) - self.old_node.wait_for_inv(CInv(1, tx3.sha256)) + self.old_node.wait_for_inv([CInv(1, tx3.sha256)]) # Test that getrawtransaction returns correct witness information # hash, size, vsize |