You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to issue #118 we have changed to using the _beforeTokenTransfer hook, which means these overrides were no longer required. They were removed in this commit.
Handle
pauliax
Vulnerability details
Impact
function safeTransferFrom is almost identical to function transferFrom. It would be better to reduce code duplication by re-using the code.
Recommended Mitigation Steps
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public override {
transferFrom(from, to, tokenId);
_data;
}
The text was updated successfully, but these errors were encountered: