[Proofs] Remove dead code

This commit is contained in:
Mark Spanbroek 2023-01-10 12:14:07 +01:00 committed by markspanbroek
parent f8e9f3c848
commit 527c21e103
1 changed files with 0 additions and 2 deletions

View File

@ -18,7 +18,6 @@ abstract contract Proofs {
mapping(SlotId => bool) private slotIds;
mapping(SlotId => uint256) private starts;
mapping(SlotId => uint256) private probabilities;
mapping(SlotId => uint256) private markers;
mapping(SlotId => uint256) private missed;
mapping(SlotId => mapping(uint256 => bool)) private received;
mapping(SlotId => mapping(uint256 => bool)) private missing;
@ -55,7 +54,6 @@ abstract contract Proofs {
slotIds[id] = true;
starts[id] = block.timestamp;
probabilities[id] = probability;
markers[id] = uint256(blockhash(block.number - 1)) % period;
}
function _unexpectProofs(SlotId id) internal {