Skip to content
This repository has been archived by the owner on May 14, 2021. It is now read-only.

Commit

Permalink
Merge pull request #19 from kinfoundation/vesting-trustee-DAY-const
Browse files Browse the repository at this point in the history
fix 'const DAY' value in test/VestingTrustee.js
  • Loading branch information
oryband committed Mar 18, 2018
2 parents aa96f79 + 118570a commit 3360522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/VestingTrustee.js
Expand Up @@ -7,7 +7,7 @@ const VestingTrustee = artifacts.require('../contracts/VestingTrustee.sol');
contract('VestingTrustee', (accounts) => {
const MINUTE = 60;
const HOUR = 60 * MINUTE;
const DAY = 24 * 60;
const DAY = 24 * HOUR;
const MONTH = 30 * DAY;
const YEAR = 12 * MONTH;

Expand Down

0 comments on commit 3360522

Please sign in to comment.