diff --git a/contracts/mvp/OwnerToken.sol b/contracts/mvp/OwnerToken.sol index ade94aa..6cc480c 100644 --- a/contracts/mvp/OwnerToken.sol +++ b/contracts/mvp/OwnerToken.sol @@ -36,7 +36,7 @@ contract OwnerToken is BaseToken { revert("max supply locked"); } - function setMaxSupply(bytes memory _newSignerPublicKey) external onlyOwner { + function setSignerPublicKey(bytes memory _newSignerPublicKey) external onlyOwner { signerPublicKey = _newSignerPublicKey; } }