Make explicit the node param in init_wallet()

This commit is contained in:
lsilva01
2021-10-20 00:30:28 -03:00
parent 23a7d56df2
commit 7b3c9e4ee8
6 changed files with 11 additions and 11 deletions

View File

@ -124,9 +124,9 @@ class WalletBackupTest(BitcoinTestFramework):
assert_raises_rpc_error(-8, "Wallet name already exists.", node.restorewallet, wallet_name, wallet_file)
def init_three(self):
self.init_wallet(0)
self.init_wallet(1)
self.init_wallet(2)
self.init_wallet(node=0)
self.init_wallet(node=1)
self.init_wallet(node=2)
def run_test(self):
self.log.info("Generating initial blockchain")