From d2120cd1714fa47a8259a56137f4e101a15a5aea Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 18 Oct 2022 13:15:57 -0600 Subject: [PATCH] firo public send fix --- lib/services/coins/firo/firo_wallet.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/coins/firo/firo_wallet.dart b/lib/services/coins/firo/firo_wallet.dart index b8d7a87b8..61ef2e9de 100644 --- a/lib/services/coins/firo/firo_wallet.dart +++ b/lib/services/coins/firo/firo_wallet.dart @@ -1356,7 +1356,7 @@ class FiroWallet extends CoinServiceAPI { List utxoObjectsToUse = []; for (var i = 0; - satoshisBeingUsed < satoshiAmountToSend && i < spendableOutputs.length; + satoshisBeingUsed <= satoshiAmountToSend && i < spendableOutputs.length; i++) { utxoObjectsToUse.add(spendableOutputs[i]); satoshisBeingUsed += spendableOutputs[i].value;