Skip to content

Commit

Permalink
Fix bound value for company tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
eswak committed Jul 20, 2018
1 parent 46f9c10 commit 8685454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/GalionTokenSale.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ contract('GalionToken', function ([owner, whitelistedInPresale, whitelistedInPau
// due to rounding issue, will test with greater and lower than

var highBound = 0.2001 * await token.totalSupply();
var lowBound = 0.01999 * await token.totalSupply();
var lowBound = 0.1999 * await token.totalSupply();

var tokenNumForCompany = (await token.balanceOf(COMPANY_ADDRESS)).toNumber()
if (tokenNumForCompany > highBound) {
Expand Down

0 comments on commit 8685454

Please sign in to comment.