2022-09-08 07:56:01 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
import "./Marketplace.sol";
|
|
|
|
|
|
|
|
// exposes internal functions of Marketplace for testing
|
|
|
|
contract TestMarketplace is Marketplace {
|
|
|
|
constructor(
|
2023-01-17 12:55:58 +00:00
|
|
|
IERC20 token,
|
|
|
|
MarketplaceConfig memory config
|
2023-01-18 14:26:21 +00:00
|
|
|
)
|
|
|
|
Marketplace(token, config) // solhint-disable-next-line no-empty-blocks
|
|
|
|
{}
|
2022-09-08 07:56:01 +00:00
|
|
|
|
2022-11-23 14:10:58 +00:00
|
|
|
function forciblyFreeSlot(SlotId slotId) public {
|
|
|
|
_forciblyFreeSlot(slotId);
|
2022-09-13 07:18:55 +00:00
|
|
|
}
|
2022-09-21 09:13:12 +00:00
|
|
|
}
|