We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b3197ea + 4c8a761 commit b8c8108Copy full SHA for b8c8108
1 file changed
claim_contracts/src/AlignedToken.sol
@@ -35,14 +35,15 @@ contract AlignedToken is
35
/// @dev The _foundation must accept the ownership of the contract
36
/// after deployment in another transaction.
37
/// @param _foundation address of the foundation.
38
- /// @param _claimSupplier address of the claim supplier.
+ /// @param _claimSupplier address of the claim supplier. This is the address
39
+ /// that will give the tokens to the users that claim them.
40
function initialize(
41
address _foundation,
42
address _claimSupplier
43
) public initializer {
44
require(
45
_foundation != address(0) && _claimSupplier != address(0),
- "Invalid _foundation or _claim"
46
+ "Invalid _foundation or _claimSupplier"
47
);
48
__ERC20_init(NAME, SYMBOL);
49
__EIP712_init(NAME, VERSION);
0 commit comments