mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
minor fix [skip ci]
This commit is contained in:
parent
e56dd1256d
commit
be4e0d6ac8
3 changed files with 3 additions and 3 deletions
|
@ -407,7 +407,7 @@ abstract class SolanaWalletBase
|
|||
if (!hasKeysFile) rethrow;
|
||||
}
|
||||
|
||||
final balance = SolanaBalance.fromJSON(data?['balance'] as String) ?? SolanaBalance(0.0);
|
||||
final balance = SolanaBalance.fromJSON(data?['balance'] as String?) ?? SolanaBalance(0.0);
|
||||
|
||||
final WalletKeysData keysData;
|
||||
// Migrate wallet from the old scheme to then new .keys file scheme
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue