This commit is contained in:
likho 2023-10-04 09:59:53 +02:00
parent 5233cbbded
commit 9746e789a0

View file

@ -1507,7 +1507,7 @@ class EpicCashWallet extends CoinServiceAPI
} else {
int debit = int.parse(tx.amountDebited);
int credit = int.parse(tx.amountCredited);
int fee = int.parse((tx.fee ?? "0"));
int fee = int.parse((tx.fee ?? "0")); //TODO -double check this
amt = debit - credit - fee;
}