mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-04 13:55:23 -05:00
Merge bitcoin/bitcoin#23659: test: fix: remove outdated TestNode.generate calls
4e1cb904ba
test: fix: remove outdated TestNode.generate calls (James O'Beirne) Pull request description: Currently failing on CI. After this change the test itself still fails, but at least it's apparently for a non-incidental reason. ACKs for top commit: meshcollider: ACK4e1cb904ba
theStack: Tested ACK4e1cb904ba
Tree-SHA512: 5e7059d334d571ca92f250d298292ce1653da8257cbfb218d28cc9c5816c21c718c36482da31fcaf78e0714cc9b67ff04b91405e820accaf4d8321a354af9441
This commit is contained in:
commit
927a9b0777
1 changed files with 3 additions and 3 deletions
|
@ -244,17 +244,17 @@ class ListTransactionsTest(BitcoinTestFramework):
|
|||
self.log.info("Send to externally generated addresses")
|
||||
# send to an address beyond the next to be generated to test the keypool gap
|
||||
self.nodes[1].sendtoaddress(addr3, "0.001")
|
||||
self.nodes[1].generate(1)
|
||||
self.generate(self.nodes[1], 1)
|
||||
self.sync_all()
|
||||
|
||||
# send to an address that is already marked as used due to the keypool gap mechanics
|
||||
self.nodes[1].sendtoaddress(addr2, "0.001")
|
||||
self.nodes[1].generate(1)
|
||||
self.generate(self.nodes[1], 1)
|
||||
self.sync_all()
|
||||
|
||||
# send to self transaction
|
||||
self.nodes[0].sendtoaddress(addr1, "0.001")
|
||||
self.nodes[0].generate(1)
|
||||
self.generate(self.nodes[0], 1)
|
||||
self.sync_all()
|
||||
|
||||
self.log.info("Verify listtransactions is the same regardless of where the address was generated")
|
||||
|
|
Loading…
Add table
Reference in a new issue