diff --git a/solidity/test/integration/LlamaVesting.t.sol b/solidity/test/integration/LlamaVesting.t.sol index dff87c5..61d1356 100644 --- a/solidity/test/integration/LlamaVesting.t.sol +++ b/solidity/test/integration/LlamaVesting.t.sol @@ -4,6 +4,9 @@ pragma solidity 0.8.20; import {IntegrationBase} from 'test/integration/IntegrationBase.sol'; contract IntegrationLlamaVesting is IntegrationBase { + /** + * @notice Assert balances on key points of the timeline + */ function test_VestAndUnlock() public { // At launch date uint256 _timestamp = SEP_05_2023; diff --git a/solidity/test/utils/Constants.sol b/solidity/test/utils/Constants.sol index 43e10ce..912f96a 100644 --- a/solidity/test/utils/Constants.sol +++ b/solidity/test/utils/Constants.sol @@ -11,9 +11,6 @@ contract Constants { // The total amount of tokens to be vested uint256 public constant TOTAL_AMOUNT = 24_960_000 ether; - // The amount of tokens to be streamed per second, TOTAL_AMOUNT / 4 years, with 20 decimals - uint216 public constant PAY_PER_SECOND = 0.19786910197869101978 * 1e20; - address public constant DAI_ADDRESS = 0x6B175474E89094C44Da98b954EedeAC495271d0F; address public constant NEXT_TOKEN_ADDRESS = 0xFE67A4450907459c3e1FFf623aA927dD4e28c67a; address public constant LLAMA_FACTORY_ADDRESS = 0xB93427b83573C8F27a08A909045c3e809610411a;