diff options
| author | Oliver Gugger <[email protected]> | 2020-09-26 10:43:03 +0200 |
|---|---|---|
| committer | Oliver Gugger <[email protected]> | 2020-09-26 10:48:54 +0200 |
| commit | 0fcaf731997c4989b869e42d8990f742637799c2 (patch) | |
| tree | 7305c1b2673a882bf287144f049516716e361a25 | |
| parent | Merge #19804: test/refactor: reference p2p objects explicitly and remove conf... (diff) | |
| download | discoin-0fcaf731997c4989b869e42d8990f742637799c2.tar.xz discoin-0fcaf731997c4989b869e42d8990f742637799c2.zip | |
test: use explicit p2p objects where available
To make the intent of the tests easier to understand, we reference the
p2p connection objects by their explicit names instead of the p2ps array.
| -rwxr-xr-x | test/functional/p2p_getdata.py | 2 | ||||
| -rwxr-xr-x | test/functional/wallet_resendwallettransactions.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/p2p_getdata.py b/test/functional/p2p_getdata.py index 51921a8ab..89d68d5ba 100755 --- a/test/functional/p2p_getdata.py +++ b/test/functional/p2p_getdata.py @@ -42,7 +42,7 @@ class GetdataTest(BitcoinTestFramework): good_getdata = msg_getdata() good_getdata.inv.append(CInv(t=2, h=best_block)) p2p_block_store.send_and_ping(good_getdata) - p2p_block_store.wait_until(lambda: self.nodes[0].p2ps[0].blocks[best_block] == 1) + p2p_block_store.wait_until(lambda: p2p_block_store.blocks[best_block] == 1) if __name__ == '__main__': diff --git a/test/functional/wallet_resendwallettransactions.py b/test/functional/wallet_resendwallettransactions.py index ca1039092..d3c03c476 100755 --- a/test/functional/wallet_resendwallettransactions.py +++ b/test/functional/wallet_resendwallettransactions.py @@ -58,7 +58,7 @@ class ResendWalletTransactionsTest(BitcoinTestFramework): two_min = 2 * 60 node.setmocktime(now + twelve_hrs - two_min) time.sleep(2) # ensure enough time has passed for rebroadcast attempt to occur - assert_equal(int(txid, 16) in node.p2ps[1].get_invs(), False) + assert_equal(int(txid, 16) in peer_second.get_invs(), False) self.log.info("Bump time & check that transaction is rebroadcast") # Transaction should be rebroadcast approximately 24 hours in the future, |