diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-09-17 15:38:38 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-09-20 08:31:04 +0200 |
commit | fa7e3f1fc114056967963a4ad4863a56e406c57e (patch) | |
tree | 521abe1118ad3a0e2d7dea65265406c017c57d0d /test/functional/feature_rbf.py | |
parent | 226731ac1144886d693d3508b331f98727ab883c (diff) |
test: Replace MiniWallet scan_blocks with rescan_utxos
Diffstat (limited to 'test/functional/feature_rbf.py')
-rwxr-xr-x | test/functional/feature_rbf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_rbf.py b/test/functional/feature_rbf.py index cb7556feb4..b941061963 100755 --- a/test/functional/feature_rbf.py +++ b/test/functional/feature_rbf.py @@ -46,7 +46,7 @@ class ReplaceByFeeTest(BitcoinTestFramework): # the pre-mined test framework chain contains coinbase outputs to the # MiniWallet's default address ADDRESS_BCRT1_P2WSH_OP_TRUE in blocks # 76-100 (see method BitcoinTestFramework._initialize_chain()) - self.wallet.scan_blocks(start=76, num=2) + self.wallet.rescan_utxos() self.log.info("Running test simple doublespend...") self.test_simple_doublespend() |