Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.

Commit dfe4591

Browse files
committed
tweak docs
1 parent 99d2450 commit dfe4591

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

contracts/modules/ReserveAuction/Listing/ETH/ReserveAuctionListingAdjustableBufferIncrementEth.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ contract ReserveAuctionListingAdjustableBufferIncrementEth is
340340
// | | |
341341
// | | |
342342
// | _______________________________________________ |
343-
// | ! ALT / Bid placed within 15 min of end? ! |
343+
// | ! ALT / Bid placed within time buffer? ! |
344344
// | !_____/ | ! |
345345
// | ! |----. ! |
346346
// | ! | | extend auction ! |
@@ -452,7 +452,7 @@ contract ReserveAuctionListingAdjustableBufferIncrementEth is
452452
timeRemaining = firstBidTime + duration - block.timestamp;
453453
}
454454

455-
// If the bid is placed within 15 minutes of the auction end, extend the auction
455+
// If the bid is placed within time buffer, extend the auction
456456
uint16 timeBuffer;
457457
if (auction.timeBuffer > 0) {
458458
timeBuffer = auction.timeBuffer;

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,5 @@
3838
"prettier": "prettier --config \"./.prettierrc\" --write \"**/*.{js,md,sol,yml}\"",
3939
"test": "forge test",
4040
"typechain": "typechain --target=ethers-v5 'dist/artifacts/*/*.json' --out-dir dist/typechain"
41-
},
42-
"type": "module"
41+
}
4342
}

0 commit comments

Comments
 (0)