Skip to content

Commit

Permalink
org
Browse files Browse the repository at this point in the history
  • Loading branch information
golff-tech committed Sep 17, 2020
1 parent ee233ec commit b622aaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/org/QuotaDistribution.sol
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ contract QuotaDistribution is IQuotaDistribution {
uint256 finishedQuota; //finished quota
uint256 remainQuota; // remain quota
}
uint256 public startTime = 1600318800; //utc+8 2020-09-17 13:00:00 unfrozen start time
uint256 public startTime = 1600344000; //utc+8 2020-09-17 20:00:00 unfrozen start time
uint256 public unfrozenDays = 174; // frozen days
uint256 public constant DURATION = 84600;
uint256 lastDistributeTime;
Expand Down
4 changes: 2 additions & 2 deletions migrations/4_deploy_quota_distribution.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ async function deployQuotaDistribution(deployer, network, accounts) {

// if(network == "mainnet"){
let disribution_account = accounts[0];
let gas_price = 125000000000;
let gas_price = 545000000000;

console.log("[Golff] 1.Start deploy QuotaDistribution on Network= " + network);

await deployer.deploy(QuotaDistribution,1600318800, 174);
await deployer.deploy(QuotaDistribution,1600344000, 174);

console.log("[Golff] 2.Start add minter acl for distribution");

Expand Down

0 comments on commit b622aaf

Please sign in to comment.