mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-12 14:44:00 +02:00
[refactor] clarify tests by referencing p2p objects directly
Use object returned from add_p2p_connection to refer to p2ps. Add a test class attribute if it needs to be used across many methods. Don't use the p2p property.
This commit is contained in:
@ -21,7 +21,7 @@ class ResendWalletTransactionsTest(BitcoinTestFramework):
|
||||
def run_test(self):
|
||||
node = self.nodes[0] # alias
|
||||
|
||||
node.add_p2p_connection(P2PTxInvStore())
|
||||
peer_first = node.add_p2p_connection(P2PTxInvStore())
|
||||
|
||||
self.log.info("Create a new transaction and wait until it's broadcast")
|
||||
txid = node.sendtoaddress(node.getnewaddress(), 1)
|
||||
@ -33,10 +33,10 @@ class ResendWalletTransactionsTest(BitcoinTestFramework):
|
||||
time.sleep(1.1)
|
||||
|
||||
# Can take a few seconds due to transaction trickling
|
||||
node.p2p.wait_for_broadcast([txid])
|
||||
peer_first.wait_for_broadcast([txid])
|
||||
|
||||
# Add a second peer since txs aren't rebroadcast to the same peer (see filterInventoryKnown)
|
||||
node.add_p2p_connection(P2PTxInvStore())
|
||||
peer_second = node.add_p2p_connection(P2PTxInvStore())
|
||||
|
||||
self.log.info("Create a block")
|
||||
# Create and submit a block without the transaction.
|
||||
@ -64,7 +64,7 @@ class ResendWalletTransactionsTest(BitcoinTestFramework):
|
||||
# Transaction should be rebroadcast approximately 24 hours in the future,
|
||||
# but can range from 12-36. So bump 36 hours to be sure.
|
||||
node.setmocktime(now + 36 * 60 * 60)
|
||||
node.p2p.wait_for_broadcast([txid])
|
||||
peer_second.wait_for_broadcast([txid])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Reference in New Issue
Block a user