mirror of
https://github.com/status-im/dagger-contracts.git
synced 2025-01-14 00:30:53 +00:00
be38c54622
Co-authored-by: Eric Mastro <eric.mastro@gmail.com>
29 lines
758 B
Solidity
29 lines
758 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;
|
|
|
|
// solhint-disable-next-line no-empty-blocks
|
|
constructor(ProofConfig memory config) Proofs(config) {}
|
|
|
|
function slotState(SlotId slotId) public 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;
|
|
}
|
|
}
|