mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-03 10:46:42 +01:00
Fix bug where bip39Password
was not passed as param in test case (#5040)
* Fix bug where bip39Password was not passed as param in test case * Empty commit to re-run CI * Empty commit to re-run CI
This commit is contained in:
parent
f95360f8ba
commit
36f30c5915
1 changed files with 3 additions and 1 deletions
|
@ -354,7 +354,9 @@ class WalletUnitTest extends BitcoinSWalletTest {
|
|||
}
|
||||
_ = wallet.walletConfig.migrate()
|
||||
//initialize it
|
||||
initOldWallet <- Wallet.initialize(wallet, None)
|
||||
initOldWallet <- Wallet.initialize(
|
||||
wallet = wallet,
|
||||
bip39PasswordOpt = wallet.walletConfig.bip39PasswordOpt)
|
||||
isOldWalletEmpty <- initOldWallet.isEmpty()
|
||||
} yield assert(!isOldWalletEmpty)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue