Skip to content

Commit

Permalink
update auction length
Browse files Browse the repository at this point in the history
  • Loading branch information
haythemsellami committed Sep 9, 2022
1 parent 841f81d commit d22e8a4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/core/MarginCalculator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ contract MarginCalculator is Ownable {
uint256 internal constant BASE = 8;

/// @notice auction length
uint256 public constant AUCTION_TIME = 3600;
uint256 public constant AUCTION_TIME = 5400;

/// @dev struct to store all needed vault details
struct VaultDetails {
Expand Down
9 changes: 7 additions & 2 deletions test/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const expectedLiqudidationPrice = (
const endingPrice = new BigNumber(collateral).dividedBy(debt)
const auctionElapsedTime = currentBlockTime - auctionStartingTime

if (auctionElapsedTime > 3600) {
if (auctionElapsedTime > 5400) {
// return Math.floor(endingPrice)
return endingPrice.multipliedBy(10 ** collateralDecimals).toNumber()
}
Expand All @@ -183,7 +183,12 @@ export const expectedLiqudidationPrice = (
}

const price = startingPrice
.plus(endingPrice.minus(startingPrice).multipliedBy(auctionElapsedTime).dividedBy(3600))
.plus(
endingPrice
.minus(startingPrice)
.multipliedBy(auctionElapsedTime)
.dividedBy(5400),
)
.multipliedBy(10 ** collateralDecimals)

if (price.isGreaterThan(endingPrice.multipliedBy(10 ** collateralDecimals)))
Expand Down

0 comments on commit d22e8a4

Please sign in to comment.