Skip to content

Commit

Permalink
Merge pull request #19 from ProjectOpenSea/ryan/add-virtual-to-mintRe…
Browse files Browse the repository at this point in the history
…demption

add `virtual` to `mintRedemption`
  • Loading branch information
ryanio authored Nov 21, 2023
2 parents 52dcff9 + baa806b commit 51a13aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extensions/ERC1155ShipyardRedeemableMintable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contract ERC1155ShipyardRedeemableMintable is ERC1155ShipyardRedeemable, IRedemp
OfferItem calldata, /* offer */
ConsiderationItem[] calldata, /* consideration */
TraitRedemption[] calldata /* traitRedemptions */
) external {
) external virtual {
// Require that msg.sender is valid.
_requireValidRedeemablesCaller();

Expand Down
2 changes: 1 addition & 1 deletion src/extensions/ERC721ShipyardRedeemableMintable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contract ERC721ShipyardRedeemableMintable is ERC721ShipyardRedeemable, IRedempti
OfferItem calldata, /* offer */
ConsiderationItem[] calldata, /* consideration */
TraitRedemption[] calldata /* traitRedemptions */
) external {
) external virtual {
// Require that msg.sender is valid.
_requireValidRedeemablesCaller();

Expand Down

0 comments on commit 51a13aa

Please sign in to comment.