Skip to content

Commit

Permalink
fix getUnconfirmedUnspentBoxesFor
Browse files Browse the repository at this point in the history
  • Loading branch information
aslesarenko committed Aug 7, 2023
1 parent e0ba3dd commit 62c8e0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public List<InputBox> getUnspentBoxesNodeApi(Address address, int offset, int li

@Override
public List<InputBox> getUnconfirmedUnspentBoxesFor(Address address, int offset, int limit) {
Transactions poolTransactions = executeCall(nodeTransactionsApi.getUnconfirmedTransactions(offset, limit));
Transactions poolTransactions = executeCall(nodeTransactionsApi.getUnconfirmedTransactions(limit, offset));

// first prepare a list of box ids that are spent so that we don't return output boxes that
// are already spent in chained transactions
Expand Down

0 comments on commit 62c8e0d

Please sign in to comment.