We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 016fed5 + 5c96373 commit 3dec897Copy full SHA for 3dec897
packages/0xcert-ethereum-erc721-contracts/src/contracts/nf-token.sol
@@ -22,7 +22,7 @@ contract NFToken is
22
string constant ZERO_ADDRESS = "003001";
23
string constant NOT_VALID_NFT = "003002";
24
string constant NOT_OWNER_OR_OPERATOR = "003003";
25
- string constant NOT_OWNER_APPROWED_OR_OPERATOR = "003004";
+ string constant NOT_OWNER_APPROVED_OR_OPERATOR = "003004";
26
string constant NOT_ABLE_TO_RECEIVE_NFT = "003005";
27
string constant NFT_ALREADY_EXISTS = "003006";
28
@@ -318,7 +318,7 @@ contract NFToken is
318
_from == msg.sender
319
|| idToApproval[_tokenId] == msg.sender
320
|| ownerToOperators[_from][msg.sender],
321
- NOT_OWNER_APPROWED_OR_OPERATOR
+ NOT_OWNER_APPROVED_OR_OPERATOR
322
);
323
324
// clear approval
0 commit comments