mirror of
https://github.com/status-im/dagger-contracts.git
synced 2025-01-17 01:51:42 +00:00
db124ddbd9
first configuration, then contracts that we depend on
31 lines
793 B
Solidity
31 lines
793 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(
|
|
ProofConfig memory config,
|
|
IVerifier verifier
|
|
) Proofs(config, verifier) {} // solhint-disable-line no-empty-blocks
|
|
|
|
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;
|
|
}
|
|
}
|