Skip to content

Commit

Permalink
Merge pull request #40 from term-finance/fix-auction-cpv-target-itera…
Browse files Browse the repository at this point in the history
…tion

Fix auction cpv target iteration
  • Loading branch information
aazhou1 authored Sep 23, 2024
2 parents 357daba + 2e8f3ff commit 9d62297
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/TermAuctionList.sol
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ library TermAuctionList {
// Filter by specific repo token if provided, address(0) bypasses this filter
if (repoTokenToMatch != address(0) && offer.repoToken != repoTokenToMatch) {
// Not a match, skip
// Move to the next token in the list
current = _getNext(listData, current);
continue;
}

Expand Down

0 comments on commit 9d62297

Please sign in to comment.