36 lines
895 B
Solidity
36 lines
895 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.23;
|
|
|
|
import "./Marketplace.sol";
|
|
|
|
// exposes internal functions of Marketplace for testing
|
|
contract TestMarketplace is Marketplace {
|
|
constructor(
|
|
MarketplaceConfig memory config,
|
|
IERC20 token,
|
|
IGroth16Verifier verifier
|
|
)
|
|
Marketplace(config, token, verifier) // solhint-disable-next-line no-empty-blocks
|
|
{}
|
|
|
|
function forciblyFreeSlot(SlotId slotId) public {
|
|
_forciblyFreeSlot(slotId);
|
|
}
|
|
|
|
function getSlotCollateral(SlotId slotId) public view returns (uint256) {
|
|
return _slots[slotId].currentCollateral;
|
|
}
|
|
|
|
function challengeToFieldElement(
|
|
bytes32 challenge
|
|
) public pure returns (uint256) {
|
|
return _challengeToFieldElement(challenge);
|
|
}
|
|
|
|
function merkleRootToFieldElement(
|
|
bytes32 merkleRoot
|
|
) public pure returns (uint256) {
|
|
return _merkleRootToFieldElement(merkleRoot);
|
|
}
|
|
}
|