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

Commit

Permalink
tweak docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jgeary committed Nov 29, 2022
1 parent 99d2450 commit dfe4591
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ contract ReserveAuctionListingAdjustableBufferIncrementEth is
// | | |
// | | |
// | _______________________________________________ |
// | ! ALT / Bid placed within 15 min of end? ! |
// | ! ALT / Bid placed within time buffer? ! |
// | !_____/ | ! |
// | ! |----. ! |
// | ! | | extend auction ! |
Expand Down Expand Up @@ -452,7 +452,7 @@ contract ReserveAuctionListingAdjustableBufferIncrementEth is
timeRemaining = firstBidTime + duration - block.timestamp;
}

// If the bid is placed within 15 minutes of the auction end, extend the auction
// If the bid is placed within time buffer, extend the auction
uint16 timeBuffer;
if (auction.timeBuffer > 0) {
timeBuffer = auction.timeBuffer;
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,5 @@
"prettier": "prettier --config \"./.prettierrc\" --write \"**/*.{js,md,sol,yml}\"",
"test": "forge test",
"typechain": "typechain --target=ethers-v5 'dist/artifacts/*/*.json' --out-dir dist/typechain"
},
"type": "module"
}
}

0 comments on commit dfe4591

Please sign in to comment.