mirror of
https://github.com/status-im/codex-contracts-eth.git
synced 2025-02-12 08:26:46 +00:00
[Proofs] Remove dead code
This commit is contained in:
parent
f8e9f3c848
commit
527c21e103
@ -18,7 +18,6 @@ abstract contract Proofs {
|
|||||||
mapping(SlotId => bool) private slotIds;
|
mapping(SlotId => bool) private slotIds;
|
||||||
mapping(SlotId => uint256) private starts;
|
mapping(SlotId => uint256) private starts;
|
||||||
mapping(SlotId => uint256) private probabilities;
|
mapping(SlotId => uint256) private probabilities;
|
||||||
mapping(SlotId => uint256) private markers;
|
|
||||||
mapping(SlotId => uint256) private missed;
|
mapping(SlotId => uint256) private missed;
|
||||||
mapping(SlotId => mapping(uint256 => bool)) private received;
|
mapping(SlotId => mapping(uint256 => bool)) private received;
|
||||||
mapping(SlotId => mapping(uint256 => bool)) private missing;
|
mapping(SlotId => mapping(uint256 => bool)) private missing;
|
||||||
@ -55,7 +54,6 @@ abstract contract Proofs {
|
|||||||
slotIds[id] = true;
|
slotIds[id] = true;
|
||||||
starts[id] = block.timestamp;
|
starts[id] = block.timestamp;
|
||||||
probabilities[id] = probability;
|
probabilities[id] = probability;
|
||||||
markers[id] = uint256(blockhash(block.number - 1)) % period;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function _unexpectProofs(SlotId id) internal {
|
function _unexpectProofs(SlotId id) internal {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user