Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit 51a13aa

Browse files
authored
Merge pull request #19 from ProjectOpenSea/ryan/add-virtual-to-mintRedemption
add `virtual` to `mintRedemption`
2 parents 52dcff9 + baa806b commit 51a13aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/extensions/ERC1155ShipyardRedeemableMintable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ contract ERC1155ShipyardRedeemableMintable is ERC1155ShipyardRedeemable, IRedemp
2727
OfferItem calldata, /* offer */
2828
ConsiderationItem[] calldata, /* consideration */
2929
TraitRedemption[] calldata /* traitRedemptions */
30-
) external {
30+
) external virtual {
3131
// Require that msg.sender is valid.
3232
_requireValidRedeemablesCaller();
3333

src/extensions/ERC721ShipyardRedeemableMintable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ contract ERC721ShipyardRedeemableMintable is ERC721ShipyardRedeemable, IRedempti
2727
OfferItem calldata, /* offer */
2828
ConsiderationItem[] calldata, /* consideration */
2929
TraitRedemption[] calldata /* traitRedemptions */
30-
) external {
30+
) external virtual {
3131
// Require that msg.sender is valid.
3232
_requireValidRedeemablesCaller();
3333

0 commit comments

Comments
 (0)