Skip to content

Commit

Permalink
cleanup comments
Browse files Browse the repository at this point in the history
  • Loading branch information
soloseng committed Sep 18, 2024
1 parent f564dce commit 460811a
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.13 <0.8.20;
pragma solidity >=0.8.0 <0.8.20;

import "celo-foundry-8/Test.sol";
import "@celo-contracts-8/common/EpochManager.sol";
Expand Down Expand Up @@ -37,7 +37,6 @@ contract EpochManagerEnablerTest is Test, TestConstants, Utils08 {
epochManager = new EpochManager(true);
epochManagerEnabler = new EpochManagerEnablerMock();

// celoToken = new MockCeloToken08();
celoUnreleasedTreasure = new MockCeloUnreleasedTreasure();

accountsAddress = actor("accountsAddress");
Expand All @@ -56,9 +55,7 @@ contract EpochManagerEnablerTest is Test, TestConstants, Utils08 {

registry.setAddressFor(CeloUnreleasedTreasureContract, address(celoUnreleasedTreasure));

// celoToken.setTotalSupply(CELO_SUPPLY_CAP);
vm.deal(address(celoUnreleasedTreasure), L2_INITIAL_STASH_BALANCE);
// celoToken.setBalanceOf(address(celoUnreleasedTreasure), L2_INITIAL_STASH_BALANCE);

epochManagerEnabler.initialize(REGISTRY_ADDRESS);
epochManager.initialize(REGISTRY_ADDRESS, epochDuration);
Expand Down

0 comments on commit 460811a

Please sign in to comment.