Skip to content

Commit

Permalink
chore: SafeTransferFrom calls TransferFrom
Browse files Browse the repository at this point in the history
- current TransferFrom has all safe logics
  • Loading branch information
r3v4s authored and onlyhyde committed Dec 27, 2024
1 parent 1d58894 commit 229663c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _deploy/r/gnoswap/gnft/gnft.gno
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ func SetTokenURILast() {
}

func SafeTransferFrom(from, to pusers.AddressOrName, tid grc721.TokenID) {
panic("not implemented")
TransferFrom(from, to, tid)
}

func setTokenURI(tid grc721.TokenID) error {
Expand Down

0 comments on commit 229663c

Please sign in to comment.