From e195225b68b0fb6b4cad568ef3e68ea52780a549 Mon Sep 17 00:00:00 2001 From: irreverentsimplicity <134286683+irreverentsimplicity@users.noreply.github.com> Date: Fri, 17 Nov 2023 01:29:55 +0000 Subject: [PATCH] Update examples/gno.land/p/demo/grc/grc721/basic_nft.gno Co-authored-by: Morgan --- examples/gno.land/p/demo/grc/grc721/basic_nft.gno | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/gno.land/p/demo/grc/grc721/basic_nft.gno b/examples/gno.land/p/demo/grc/grc721/basic_nft.gno index 0ed9f5bf009..8478f277a3c 100644 --- a/examples/gno.land/p/demo/grc/grc721/basic_nft.gno +++ b/examples/gno.land/p/demo/grc/grc721/basic_nft.gno @@ -85,10 +85,6 @@ func (s *basicNFT) SetTokenURI(tid TokenID, tURI TokenURI) (bool, error) { return false, ErrCallerIsNotOwner } s.tokenURIs.Set(string(tid), string(tURI)) - storedURI, added := s.tokenURIs.Get(string(tid)) - if !added { - return false, ErrTokenURINotSet - } return true, nil }