Skip to content

Commit

Permalink
Set a better default ReserveSubmissionSeconds
Browse files Browse the repository at this point in the history
ReserveSubmissionSeconds represents a period BEFORE the auction closes
that the reserve price may be updated for the next round. The previous
setting of 45 seconds means that the reserve price could not be updated
at all after the round started, coupled with the auction closing period
of 15 seconds (round duration is 60 seconds).
  • Loading branch information
Tristan-Wilson committed Nov 21, 2024
1 parent 3580743 commit 437d8aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ethcommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ export const deployExpressLaneAuctionContractCommand = {
Math.round(Date.now() / 60000) * 60, // offsetTimestamp - most recent minute
60, // roundDurationSeconds
15, // auctionClosingSeconds
45 // reserveSubmissionSeconds
15 // reserveSubmissionSeconds
],// RoundTiminginfo
1, // _minReservePrice
auctioneerAddr, //_auctioneerAdmin
Expand Down

0 comments on commit 437d8aa

Please sign in to comment.