mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
firo public send fix
This commit is contained in:
parent
604c2b4a63
commit
d2120cd171
1 changed files with 1 additions and 1 deletions
|
@ -1356,7 +1356,7 @@ class FiroWallet extends CoinServiceAPI {
|
|||
List<UtxoObject> utxoObjectsToUse = [];
|
||||
|
||||
for (var i = 0;
|
||||
satoshisBeingUsed < satoshiAmountToSend && i < spendableOutputs.length;
|
||||
satoshisBeingUsed <= satoshiAmountToSend && i < spendableOutputs.length;
|
||||
i++) {
|
||||
utxoObjectsToUse.add(spendableOutputs[i]);
|
||||
satoshisBeingUsed += spendableOutputs[i].value;
|
||||
|
|
Loading…
Reference in a new issue