Skip to content

Commit aceb5dc

Browse files
deploy new version of marketplace
1 parent 7e26098 commit aceb5dc

File tree

5 files changed

+97
-44
lines changed

5 files changed

+97
-44
lines changed

packages/hardhat/contracts/Marketplace.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ contract Marketplace is ReentrancyGuard {
4646
emit ListingAction(id, msg.sender, action);
4747
}
4848

49-
function setActive(uint256 listingId, bool active) external nonReentrant {
49+
function setActive(uint256 listingId, bool active) external {
5050
ListingPointer storage record = listings[listingId];
5151
if (msg.sender != record.listingType) revert OnlyListingTypeCanModify();
5252
record.active = active;

0 commit comments

Comments
 (0)