diff options
author | Fabian Jahr <fjahr@protonmail.com> | 2022-06-26 16:34:11 +0200 |
---|---|---|
committer | Fabian Jahr <fjahr@protonmail.com> | 2022-06-26 16:34:11 +0200 |
commit | e3d8d727031c93a68ef2e5e85c83f4718e4c209f (patch) | |
tree | f71c0479ad45e8d9f9e4058c31781ad2d06aa93a /test/functional/wallet_importdescriptors.py | |
parent | 34869114a72435b9d8364385abaefed70d703fa8 (diff) |
test: Remove unnecessary block mining from importdescriptors test
Diffstat (limited to 'test/functional/wallet_importdescriptors.py')
-rwxr-xr-x | test/functional/wallet_importdescriptors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_importdescriptors.py b/test/functional/wallet_importdescriptors.py index ac74ff2484..ff11f421a1 100755 --- a/test/functional/wallet_importdescriptors.py +++ b/test/functional/wallet_importdescriptors.py @@ -454,7 +454,7 @@ class ImportDescriptorsTest(BitcoinTestFramework): send_txid = wmulti_priv.sendtoaddress(w0.getnewaddress(), 8) decoded = wmulti_priv.gettransaction(txid=send_txid, verbose=True)['decoded'] assert_equal(len(decoded['vin'][0]['txinwitness']), 4) - self.generate(self.nodes[0], 6) + self.sync_all() self.nodes[1].createwallet(wallet_name="wmulti_pub", disable_private_keys=True, blank=True, descriptors=True) wmulti_pub = self.nodes[1].get_wallet_rpc("wmulti_pub") |