Skip to content

Commit

Permalink
FeralfileArtworkV5 contract to support ERC1155
Browse files Browse the repository at this point in the history
  • Loading branch information
jollyjoker992 committed Feb 7, 2024
1 parent 9a07563 commit 93b319b
Show file tree
Hide file tree
Showing 5 changed files with 1,534 additions and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Authorizable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contract Authorizable is Ownable {
constructor() {}

modifier onlyAuthorized() {
require(trustees[msg.sender] || msg.sender == owner());
require(trustees[_msgSender()] ||_msgSender() == owner());
_;
}

Expand Down
Loading

0 comments on commit 93b319b

Please sign in to comment.