You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contracts/token/ERC20/MintableToken.sol
+1-32Lines changed: 1 addition & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -46,37 +46,6 @@ contract MintableToken is StandardToken, Ownable {
46
46
{
47
47
returndoMint(_to, _amount);
48
48
}
49
-
50
-
/**
51
-
* @dev Function to mint tokens from an off chain signed message. This can be very usefull during airdrop to make the redeemer pay the gas instead of the owner of the contract.
52
-
* @param _to The address that will receive the minted tokens.
53
-
* @param _amount The amount of tokens to mint.
54
-
* @param _nonce Unique value used to allow multiple minting of the same amount to the same address
55
-
* @param _signature Signature of the hash
56
-
* @return A boolean that indicates if the operation was successful.
0 commit comments