From 0f399395d01b17a8e670a86bb0b5729bf353747b Mon Sep 17 00:00:00 2001 From: lza_menace Date: Sat, 25 Dec 2021 00:31:49 -0800 Subject: [PATCH] fix func naming scheme --- contracts/SuchwowX.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/SuchwowX.sol b/contracts/SuchwowX.sol index 7ba9088..4999d60 100644 --- a/contracts/SuchwowX.sol +++ b/contracts/SuchwowX.sol @@ -41,7 +41,7 @@ contract SuchwowX is ERC721, ERC721URIStorage, Ownable { } // Specify new Wownero address - function set_wownero_address(string memory wowneroAddress) external { + function setWowneroAddress(string memory wowneroAddress) external { require(bytes(wowneroAddress).length > 0, "Wownero address must be provided."); creatorWowneroAddress[msg.sender] = wowneroAddress; }