rename setSignerPublicKey

This commit is contained in:
0xb337r007 2023-07-14 15:30:22 +02:00
parent 7a365b1be3
commit 14c9b0b627
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ contract OwnerToken is BaseToken {
revert("max supply locked"); revert("max supply locked");
} }
function setMaxSupply(bytes memory _newSignerPublicKey) external onlyOwner { function setSignerPublicKey(bytes memory _newSignerPublicKey) external onlyOwner {
signerPublicKey = _newSignerPublicKey; signerPublicKey = _newSignerPublicKey;
} }
} }