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:
    ACK 4e1cb904ba
  theStack:
    Tested ACK 4e1cb904ba

Tree-SHA512: 5e7059d334d571ca92f250d298292ce1653da8257cbfb218d28cc9c5816c21c718c36482da31fcaf78e0714cc9b67ff04b91405e820accaf4d8321a354af9441
pull/826/head
fanquake 3 years ago
commit 927a9b0777
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1

@ -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…
Cancel
Save