fix(cw_monero): fix missing passphrase for bip39 Monero Wallets (#2188)
Konstantin Ullrich committed
Apr 11, 2025 at 12:45 UTC
14549bcfe2bce8b6a9a6ef37717bcb3d12dbbcde
1 file changed
+2
cw_monero/lib/monero_wallet_service.dart
+2
@@ -403,6 +403,8 @@ class MoneroWalletService extends WalletService<
403
404
monero.Wallet_setCacheAttribute(wptr!,
405
key: "cakewallet.seed.bip39", value: mnemonic);
406
+ monero.Wallet_setCacheAttribute(wptr!,
407
+ key: "cakewallet.passphrase", value: passphrase ?? '');
408
409
monero.Wallet_store(wptr!);
410