37 lines
840 B
Solidity
37 lines
840 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "./Proofs.sol";
|
|
|
|
// exposes internal functions of Proofs for testing
|
|
contract TestProofs is Proofs {
|
|
mapping(SlotId => SlotState) private states;
|
|
|
|
constructor(
|
|
uint256 __period,
|
|
uint256 __timeout,
|
|
uint8 __downtime
|
|
)
|
|
Proofs(__period, __timeout, __downtime)
|
|
// solhint-disable-next-line no-empty-blocks
|
|
{
|
|
|
|
}
|
|
|
|
function slotState(SlotId slotId) internal view override returns (SlotState) {
|
|
return states[slotId];
|
|
}
|
|
|
|
function startRequiringProofs(SlotId slot, uint256 _probability) public {
|
|
_startRequiringProofs(slot, _probability);
|
|
}
|
|
|
|
function markProofAsMissing(SlotId id, Period _period) public {
|
|
_markProofAsMissing(id, _period);
|
|
}
|
|
|
|
function setSlotState(SlotId id, SlotState state) public {
|
|
states[id] = state;
|
|
}
|
|
}
|