Skip to content

Commit

Permalink
Issue #29
Browse files Browse the repository at this point in the history
Remove expiration check as it was changed to seconds instead of blocks
  • Loading branch information
yossipik committed Dec 12, 2018
1 parent a48e023 commit 09f01a4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/testERC20.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,6 @@ contract('Trust - Using ERC20 Token', async (accounts) => {
assert.equal(trustor, await trust.trustor());
assert.equal(beneficiary, await trust.beneficiary());
assert.equal(trustBalance, await trust.trustBalance());
let expiration = await trust.expiration();
let now = await web3.eth.getBlock('latest').timestamp;
assert.equal(now + trustExpiration, expiration);
});

it('Attemp to deposit in trust', async() => {
Expand Down

0 comments on commit 09f01a4

Please sign in to comment.