Skip to content

Commit

Permalink
Carbon Vortex 2.0 - minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanzhelyazkov committed Apr 16, 2024
1 parent d80bb69 commit 4be31be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/vortex/CarbonVortex.sol
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ contract CarbonVortex is ICarbonVortex, Upgradeable, ReentrancyGuardUpgradeable,
// set target token price decay half-life to 10 days
_setTargetTokenPriceDecayHalfLifeOnReset(10 days);
// set initial target token sale amount to 100 eth
_setMaxTargetTokenSaleAmount(100 ether);
_setMaxTargetTokenSaleAmount(uint128(100) * uint128(10) ** _targetToken.decimals());
// set min target token sale amount to 10 eth
_setMinTokenSaleAmount(_targetToken, 10 ether);
_setMinTokenSaleAmount(_targetToken, uint128(10) * uint128(10) ** _targetToken.decimals());
}

/**
Expand Down

0 comments on commit 4be31be

Please sign in to comment.