diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-08-18 08:17:56 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-08-18 08:18:00 +0200 |
commit | e6e277f9ed4da7aff9b7b39a7838bada0c3e572a (patch) | |
tree | 3330a3a98ced9bee01dd269cbd6bb8df8879c833 /test/functional/wallet_groups.py | |
parent | 772cb03a281638079051a4e5068559a4d9b1fda8 (diff) | |
parent | 72ae20fc142457a200278cb2fedc5e32a3766b58 (diff) |
Merge #19756: tests: add sync_all to fix race condition in wallet groups test
72ae20fc142457a200278cb2fedc5e32a3766b58 tests: add sync_all to fix race condition in wallet groups test (Karl-Johan Alm)
Pull request description:
This most likely fixes #19749, the intermittent CI issues with wallet_groups.
This fix is also included in #19743.
Top commit has no ACKs.
Tree-SHA512: dd6ef7f89829483e2278191c21fe0912b51fd2187c10a0fa158339c5ab9f22d93b733ae10f17ef25d8b64f44e596e66dba8d7db5c009343472f422ce4cd67d8f
Diffstat (limited to 'test/functional/wallet_groups.py')
-rwxr-xr-x | test/functional/wallet_groups.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/wallet_groups.py b/test/functional/wallet_groups.py index cfdc2d51e6..9b6230f674 100755 --- a/test/functional/wallet_groups.py +++ b/test/functional/wallet_groups.py @@ -103,6 +103,7 @@ class WalletGroupTest(BitcoinTestFramework): self.nodes[0].sendtoaddress(addr_aps, 1.0) self.nodes[0].sendtoaddress(addr_aps, 1.0) self.nodes[0].generate(1) + self.sync_all() txid4 = self.nodes[3].sendtoaddress(self.nodes[0].getnewaddress(), 0.1) tx4 = self.nodes[3].getrawtransaction(txid4, True) # tx4 should have 2 inputs and 2 outputs although one output would |