mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
Fix not saving passphrase
This commit is contained in:
parent
dda3b49da6
commit
b0269a7f14
4 changed files with 20 additions and 4 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue