diff --git a/lib/services/coins/epiccash/epiccash_wallet.dart b/lib/services/coins/epiccash/epiccash_wallet.dart index 98e8e8986..07cbcb236 100644 --- a/lib/services/coins/epiccash/epiccash_wallet.dart +++ b/lib/services/coins/epiccash/epiccash_wallet.dart @@ -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; }