mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
found an edge case
This commit is contained in:
parent
4503ad5401
commit
17695d1878
1 changed files with 1 additions and 1 deletions
|
@ -681,7 +681,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
|||
unconfirmedMweb += utxo.value.toInt();
|
||||
}
|
||||
});
|
||||
if (confirmedMweb > 0 && unconfirmedMweb > 0) {
|
||||
if (/*confirmedMweb > 0 &&*/ unconfirmedMweb > 0) {
|
||||
unconfirmedMweb = -1 * (confirmedMweb - unconfirmedMweb);
|
||||
}
|
||||
} catch (_) {}
|
||||
|
|
Loading…
Reference in a new issue