diff options
author | brunoerg <brunoely.gc@gmail.com> | 2023-02-28 09:58:06 -0300 |
---|---|---|
committer | brunoerg <brunoely.gc@gmail.com> | 2023-05-19 09:13:17 -0300 |
commit | 60ced9007d518d542ce489b91076f9bbaf3312e3 (patch) | |
tree | 991235f37a354572973a4d58c62a8589ae79516f /test/functional/mempool_persist.py | |
parent | 7be7e62fdf4623e0cc680ea8205750c16414453e (diff) |
test: fix intermittent issue in `feature_bip68_sequence`
To avoid `bad-txns-premature-spend-of-coinbase` error,
when getting a utxo (using `get_utxo`) to create a new
transaction `get_utxo` shouldn't return by default
immature coinbase.
Diffstat (limited to 'test/functional/mempool_persist.py')
-rwxr-xr-x | test/functional/mempool_persist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/mempool_persist.py b/test/functional/mempool_persist.py index f818801136..8f74d9de20 100755 --- a/test/functional/mempool_persist.py +++ b/test/functional/mempool_persist.py @@ -191,6 +191,7 @@ class MempoolPersistTest(BitcoinTestFramework): def test_persist_unbroadcast(self): node0 = self.nodes[0] self.start_node(0) + self.start_node(2) # clear out mempool self.generate(node0, 1, sync_fun=self.no_op) |