diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-10-18 11:04:32 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-10-18 11:02:59 +0200 |
commit | faab86f6c8367178a068b298eda4ae3986ac2147 (patch) | |
tree | cc1fb9318716deda67a10acb9462fba30b5013bf /test | |
parent | faca3734c00ffaf2be7bd555fbfa2887ba28c811 (diff) |
test: Fix intermittent issue in wallet_send
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/wallet_send.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/wallet_send.py b/test/functional/wallet_send.py index 876eb7f29e..60ab2d457e 100755 --- a/test/functional/wallet_send.py +++ b/test/functional/wallet_send.py @@ -316,6 +316,7 @@ class WalletSendTest(BitcoinTestFramework): res = self.nodes[0].sendrawtransaction(hex) self.nodes[0].generate(1) assert_equal(self.nodes[0].gettransaction(txid)["confirmations"], 1) + self.sync_all() self.log.info("Lock unspents...") utxo1 = w0.listunspent()[0] |