Closed ongrid closed 6 years ago
/** * @dev Throws if called by any account other than the minter. */ modifier onlyMinter() { require(msg.sender == minter); _; }