From fe92d252231d388b96ccd16bbfa6cd77e80324f4 Mon Sep 17 00:00:00 2001 From: Trubnikov Sergey Date: Thu, 09 Mar 2023 09:20:21 +0000 Subject: [PATCH] fix: doc --- --- a/pallets/nonfungible/src/erc.rs +++ b/pallets/nonfungible/src/erc.rs @@ -516,8 +516,8 @@ } /// @notice Get the approved address for a single NFT - /// @dev Throws if `_tokenId` is not a valid NFT - /// @param _tokenId The NFT to find the approved address for + /// @dev Throws if `tokenId` is not a valid NFT + /// @param tokenId The NFT to find the approved address for /// @return The approved address for this NFT, or the zero address if there is none fn get_approved(&self, token_id: U256) -> Result
{ let token = token_id.try_into()?; -- gitstuff