From a6dcd803813614fed1a2662f6703ca60b30db455 Mon Sep 17 00:00:00 2001 From: Martin Kysel Date: Fri, 11 Oct 2024 12:08:45 -0400 Subject: [PATCH] oops --- contracts/src/Nodes.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/contracts/src/Nodes.sol b/contracts/src/Nodes.sol index 332fe89d..606f08b7 100644 --- a/contracts/src/Nodes.sol +++ b/contracts/src/Nodes.sol @@ -68,7 +68,6 @@ contract Nodes is ERC721, Ownable { * Allow a NFT holder to update the HTTP address of their node */ function updateHttpAddress(uint256 tokenId, string calldata httpAddress) public { - console.log(tokenId, ownerOf(tokenId), _msgSender()); require(_msgSender() == ownerOf(tokenId), "Only the owner of the Node NFT can update its http address"); _nodes[tokenId].httpAddress = httpAddress; _emitNodeUpdate(tokenId);