Skip to content

Commit 3dec897

Browse files
authored
Merge pull request #706 from fulldecent/patch-3
APPROVED
2 parents 016fed5 + 5c96373 commit 3dec897

File tree

1 file changed

+2
-2
lines changed
  • packages/0xcert-ethereum-erc721-contracts/src/contracts

1 file changed

+2
-2
lines changed

packages/0xcert-ethereum-erc721-contracts/src/contracts/nf-token.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ contract NFToken is
2222
string constant ZERO_ADDRESS = "003001";
2323
string constant NOT_VALID_NFT = "003002";
2424
string constant NOT_OWNER_OR_OPERATOR = "003003";
25-
string constant NOT_OWNER_APPROWED_OR_OPERATOR = "003004";
25+
string constant NOT_OWNER_APPROVED_OR_OPERATOR = "003004";
2626
string constant NOT_ABLE_TO_RECEIVE_NFT = "003005";
2727
string constant NFT_ALREADY_EXISTS = "003006";
2828

@@ -318,7 +318,7 @@ contract NFToken is
318318
_from == msg.sender
319319
|| idToApproval[_tokenId] == msg.sender
320320
|| ownerToOperators[_from][msg.sender],
321-
NOT_OWNER_APPROWED_OR_OPERATOR
321+
NOT_OWNER_APPROVED_OR_OPERATOR
322322
);
323323

324324
// clear approval

0 commit comments

Comments
 (0)