Skip to content

Commit

Permalink
Update examples/gno.land/p/demo/grc/grc721/basic_nft.gno
Browse files Browse the repository at this point in the history
Co-authored-by: Morgan <[email protected]>
  • Loading branch information
irreverentsimplicity and thehowl authored Nov 17, 2023
1 parent d6ec0aa commit e195225
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions examples/gno.land/p/demo/grc/grc721/basic_nft.gno
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit e195225

Please sign in to comment.