Skip to content

Commit

Permalink
Optimize storage slots (fixes #15)
Browse files Browse the repository at this point in the history
  • Loading branch information
sembrestels committed Oct 26, 2021
1 parent 18a4635 commit 8ab1ac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/Hatch.sol
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ contract Hatch is EtherTokenConstant, IsContract, AragonApp, IACLOracle {

uint256 public minGoal;
uint256 public maxGoal;
uint64 public period;
uint256 public exchangeRate;
uint64 public period;
uint64 public vestingCliffPeriod;
uint64 public vestingCompletePeriod;
uint64 public openDate;
uint256 public supplyOfferedPct;
uint256 public fundingForBeneficiaryPct;
uint64 public openDate;

bool public isClosed;
uint64 public vestingCliffDate;
Expand Down

0 comments on commit 8ab1ac2

Please sign in to comment.