Skip to content
This repository was archived by the owner on Feb 15, 2025. It is now read-only.

Commit 11a0abb

Browse files
committed
Support token issuance of any size
1 parent b56ac65 commit 11a0abb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/Sale.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ contract Sale {
9494

9595
token.transfer(this, token.totalSupply());
9696
assert(token.balanceOf(this) == token.totalSupply());
97-
assert(token.balanceOf(this) == 10**18);
97+
assert(token.balanceOf(this) == _tokenSupply);
9898
}
9999

100100
/// @dev distributeFoundersRewards(): private utility function called by constructor

0 commit comments

Comments
 (0)