From 14549bcfe2bce8b6a9a6ef37717bcb3d12dbbcde Mon Sep 17 00:00:00 2001 From: Konstantin Ullrich Date: Fri, 11 Apr 2025 12:45:50 +0200 Subject: [PATCH] fix(cw_monero): fix missing passphrase for bip39 Monero Wallets (#2188) --- cw_monero/lib/monero_wallet_service.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cw_monero/lib/monero_wallet_service.dart b/cw_monero/lib/monero_wallet_service.dart index e289f9f17..0163b17e1 100644 --- a/cw_monero/lib/monero_wallet_service.dart +++ b/cw_monero/lib/monero_wallet_service.dart @@ -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!);