diff options
| author | Ross Nicoll <[email protected]> | 2021-05-25 17:17:14 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2021-05-25 17:17:14 +0100 |
| commit | 100bd6e55105d870dd64432af31cd537d197f698 (patch) | |
| tree | c51b1cda6354f43bc864610c8f16cf63724e02d4 /test/functional | |
| parent | Merge pull request #1979 from rnicoll/1.21-difficulty-pre-digishield (diff) | |
| download | discoin-100bd6e55105d870dd64432af31cd537d197f698.tar.xz discoin-100bd6e55105d870dd64432af31cd537d197f698.zip | |
Sync nodes before maturing blocks in bumpfee
Diffstat (limited to 'test/functional')
| -rwxr-xr-x | test/functional/wallet_bumpfee.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/wallet_bumpfee.py b/test/functional/wallet_bumpfee.py index 880b86f6e..566c6cc28 100755 --- a/test/functional/wallet_bumpfee.py +++ b/test/functional/wallet_bumpfee.py @@ -66,6 +66,7 @@ class BumpFeeTest(BitcoinTestFramework): # fund rbf node with 10 coins of 0.001 btc (100,000 satoshis) self.log.info("Mining blocks...") peer_node.generate(110) + self.sync_all() # Dogecoin: Coinbase maturity is much higher, so we mine to the RBF node for funding rbf_node.generate(140) self.sync_all() |