Skip to content

Commit 17ddf6c

Browse files
jaybuidlunknownunknown1
authored andcommitted
fix: re-added removed variables to preserve storage layout, marked as deprecated for later removal
1 parent 94a0988 commit 17ddf6c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

contracts/src/arbitration/SortitionModuleBase.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,11 @@ abstract contract SortitionModuleBase is ISortitionModule, Initializable, UUPSPr
5050
uint256 public minStakingTime; // The time after which the phase can be switched to Drawing if there are open disputes.
5151
uint256 public maxDrawingTime; // The time after which the phase can be switched back to Staking.
5252
uint256 public lastPhaseChange; // The last time the phase was changed.
53+
uint256 public randomNumberRequestBlock; // DEPRECATED: to be removed in the next redeploy
5354
uint256 public disputesWithoutJurors; // The number of disputes that have not finished drawing jurors.
5455
IRNG public rng; // The random number generator.
5556
uint256 public randomNumber; // Random number returned by RNG.
57+
uint256 public rngLookahead; // DEPRECATED: to be removed in the next redeploy
5658
uint256 public delayedStakeWriteIndex; // The index of the last `delayedStake` item that was written to the array. 0 index is skipped.
5759
uint256 public delayedStakeReadIndex; // The index of the next `delayedStake` item that should be processed. Starts at 1 because 0 index is skipped.
5860
mapping(bytes32 treeHash => SortitionSumTree) sortitionSumTrees; // The mapping trees by keys.

0 commit comments

Comments
 (0)