Skip to content

Commit

Permalink
fix: naming
Browse files Browse the repository at this point in the history
  • Loading branch information
dristpunk committed Feb 21, 2024
1 parent 59fe8ca commit b29a687
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion solidity/test/integration/ConnextVestingWallet.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract UnitConnextVestingWallet is Test, Constants {
vm.prank(payer);
_llamaVest = IVestingEscrowSimple(
_llamaVestFactory.deploy_vesting_contract(
NEXT_TOKEN_ADDRESS, address(_connextVestingWallet), TOTAL_AMOUNT, UNLOCK_DURATION, AUG_01_2022, 0
NEXT_TOKEN_ADDRESS, address(_connextVestingWallet), TOTAL_AMOUNT, VESTING_DURATION, AUG_01_2022, 0
)
);

Expand Down
2 changes: 1 addition & 1 deletion solidity/test/integration/IntegrationBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract IntegrationBase is Test, Constants, Deploy {
vm.prank(payer);
_llamaVest = IVestingEscrowSimple(
_llamaVestFactory.deploy_vesting_contract(
NEXT_TOKEN_ADDRESS, address(_connextVestingWallet), TOTAL_AMOUNT, UNLOCK_DURATION, AUG_01_2022, 0
NEXT_TOKEN_ADDRESS, address(_connextVestingWallet), TOTAL_AMOUNT, VESTING_DURATION, AUG_01_2022, 0
)
);
}
Expand Down
2 changes: 1 addition & 1 deletion solidity/test/utils/Constants.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ contract Constants {
// Vesting info
uint64 public constant AUG_01_2022 = 1_659_312_000; // vesting start date
uint64 public constant SEP_05_2023 = 1_693_872_000; // launch date
uint64 public constant UNLOCK_DURATION = 365 days * 4;
uint64 public constant VESTING_DURATION = 365 days * 4;

// Time
uint64 public constant YEAR = 365 days;
Expand Down

0 comments on commit b29a687

Please sign in to comment.