mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 03:29:36 +00:00
fix unconfirmed balance not showing
This commit is contained in:
parent
edf9f29d23
commit
f8af12daa1
1 changed files with 2 additions and 2 deletions
|
@ -725,8 +725,8 @@ abstract class MoneroWalletBase extends WalletBase<MoneroBalance,
|
|||
|
||||
void _askForUpdateBalance() {
|
||||
final unlockedBalance = _getUnlockedBalance();
|
||||
final fullBalance = _getUnlockedBalance() + _getFrozenBalance();
|
||||
final frozenBalance = 0; // this is calculated on the monero side now
|
||||
final fullBalance = _getFullBalance() + _getFrozenBalance();
|
||||
final frozenBalance = _getFrozenBalance();
|
||||
if (balance[currency]!.fullBalance != fullBalance ||
|
||||
balance[currency]!.unlockedBalance != unlockedBalance ||
|
||||
balance[currency]!.frozenBalance != frozenBalance) {
|
||||
|
|
Loading…
Reference in a new issue