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:
Chris Stewart 2023-04-08 22:19:13 -05:00 committed by GitHub
parent f95360f8ba
commit 36f30c5915
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -354,7 +354,9 @@ class WalletUnitTest extends BitcoinSWalletTest {
} }
_ = wallet.walletConfig.migrate() _ = wallet.walletConfig.migrate()
//initialize it //initialize it
initOldWallet <- Wallet.initialize(wallet, None) initOldWallet <- Wallet.initialize(
wallet = wallet,
bip39PasswordOpt = wallet.walletConfig.bip39PasswordOpt)
isOldWalletEmpty <- initOldWallet.isEmpty() isOldWalletEmpty <- initOldWallet.isEmpty()
} yield assert(!isOldWalletEmpty) } yield assert(!isOldWalletEmpty)