From 14c9b0b62746871ef1f8c8e8a97177a0b4201ada Mon Sep 17 00:00:00 2001 From: 0xb337r007 <0xe4e5@proton.me> Date: Fri, 14 Jul 2023 15:30:22 +0200 Subject: [PATCH] rename setSignerPublicKey --- contracts/mvp/OwnerToken.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }