Skip to content

Commit

Permalink
24h
Browse files Browse the repository at this point in the history
  • Loading branch information
dvush committed Dec 25, 2020
1 parent 4eedee4 commit 395b89b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/contracts/Config.sol
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ contract Config {
);

/// @dev Timestamp - seconds since unix epoch
uint256 constant COMMIT_TIMESTAMP_NOT_OLDER = 8 hours;
uint256 constant COMMIT_TIMESTAMP_NOT_OLDER = 24 hours;

/// @dev Maximum available error between real commit block timestamp and analog used in the verifier (in seconds)
/// @dev Must be used cause miner's `block.timestamp` value can differ on some small value (as we know - 15 seconds)
Expand Down
2 changes: 1 addition & 1 deletion contracts/scripts/query-contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const deployer = new Deployer({ deployWallet: wallet });
async function main() {
const zkSyncContract = deployer.zkSyncContract(wallet);
const governanceContract = deployer.governanceContract(wallet);
console.log('total tokens', await governanceContract.totalTokens())
console.log('total tokens', await governanceContract.totalTokens());
}

main()
Expand Down

0 comments on commit 395b89b

Please sign in to comment.