Skip to content

Commit

Permalink
fix: name
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed Oct 25, 2024
1 parent 157bd6f commit 340d1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auctions/DumperAuction.sol
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ contract DumperAuction is Governance2Step, ReentrancyGuard {
require(_hash == order.hash(COW_DOMAIN_SEPARATOR), "bad order");
require(paymentAmount > 0, "zero amount");
require(order.feeAmount == 0, "fee");
require(order.partialFillAllowed, "partial fill");
require(order.partiallyFillable, "partial fill");
require(order.validTo < auction.kicked + auctionLength, "expired");
require(order.appData == bytes32(0), "app data");
require(order.buyAmount >= paymentAmount, "bad price");
Expand Down

0 comments on commit 340d1d0

Please sign in to comment.