diff --git a/lib/services/coins/firo/firo_wallet.dart b/lib/services/coins/firo/firo_wallet.dart index bcd3ff686..6cc8d9566 100644 --- a/lib/services/coins/firo/firo_wallet.dart +++ b/lib/services/coins/firo/firo_wallet.dart @@ -3819,7 +3819,7 @@ class FiroWallet extends CoinServiceAPI { var sendIndex = 1; if (tx["vout"][0]["value"] != null && - tx["vout"][0]["value"] as int > 0) { + Decimal.parse(tx["vout"][0]["value"].toString()) > Decimal.zero) { sendIndex = 0; } tx["amount"] = tx["vout"][sendIndex]["value"];