mirror of
https://github.com/status-im/codex-contracts-eth.git
synced 2025-02-07 14:13:28 +00:00
Container for all configuration values, replaces separate constructor parameters and getters.
20 lines
429 B
Solidity
20 lines
429 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "./Marketplace.sol";
|
|
|
|
// exposes internal functions of Marketplace for testing
|
|
contract TestMarketplace is Marketplace {
|
|
constructor(
|
|
IERC20 token,
|
|
MarketplaceConfig memory config
|
|
) Marketplace(token, config) // solhint-disable-next-line no-empty-blocks
|
|
{
|
|
|
|
}
|
|
|
|
function forciblyFreeSlot(SlotId slotId) public {
|
|
_forciblyFreeSlot(slotId);
|
|
}
|
|
}
|