Fix not saving passphrase

This commit is contained in:
OmarHatem 2025-03-16 04:45:46 +02:00
parent dda3b49da6
commit b0269a7f14
4 changed files with 20 additions and 4 deletions

View file

@ -555,7 +555,11 @@ abstract class EVMChainWalletBase
: null;
@override
WalletKeysData get walletKeysData => WalletKeysData(mnemonic: _mnemonic, privateKey: privateKey);
WalletKeysData get walletKeysData => WalletKeysData(
mnemonic: _mnemonic,
privateKey: privateKey,
passphrase: passphrase,
);
String toJSON() => json.encode({
'mnemonic': _mnemonic,