fix(cw_monero): fix missing passphrase for bip39 Monero Wallets (#2188)

This commit is contained in:
Konstantin Ullrich 2025-04-11 12:45:50 +02:00 committed by GitHub
parent 9b1ca4ea2e
commit 14549bcfe2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -403,6 +403,8 @@ class MoneroWalletService extends WalletService<
monero.Wallet_setCacheAttribute(wptr!,
key: "cakewallet.seed.bip39", value: mnemonic);
monero.Wallet_setCacheAttribute(wptr!,
key: "cakewallet.passphrase", value: passphrase ?? '');
monero.Wallet_store(wptr!);