mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
fix: Remove full balance
This commit is contained in:
parent
ea3da361d6
commit
944ee2c672
1 changed files with 2 additions and 1 deletions
|
@ -17,7 +17,8 @@ class NanoBalance extends Balance {
|
|||
receivableBalance = stringAmountToBigIntNano(formattedReceivableBalance),
|
||||
super(0, 0);
|
||||
|
||||
NanoBalance.fromRawString({required String currentBalance, required String receivableBalance})
|
||||
NanoBalance.fromRawString(
|
||||
{required String currentBalance, required String receivableBalance})
|
||||
: currentBalance = BigInt.parse(currentBalance),
|
||||
receivableBalance = BigInt.parse(receivableBalance),
|
||||
super(0, 0);
|
||||
|
|
Loading…
Reference in a new issue