You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sanity check in Core._getCompatibleNextRoundSettings(),
bug fix in appealCost(),
naming of the NextRoundSettingsChanged parameters,
better comments describing the NextRoundSettings parameters.
bool enabled; // True if the settings are enabled, false otherwise.
63
-
uint96 jumpCourtID; // The ID of the court for the next round. Zero is considered as undefined.
64
-
uint256 jumpDisputeKitID; // The ID of the dispute kit for the next round. Zero is considered as undefined.
65
-
uint256 jumpDisputeKitIDOnCourtJump; // The ID of the dispute kit if the court jumps and `jumpDisputeKitID` is undefined. Zero is considered as undefined.
66
-
uint256 nbVotes; // The number of votes for the next round. Zero is considered as undefined.
63
+
uint96 jumpCourtID; // A non-zero value makes the next round use this court ID. Zero is considered as undefined.
64
+
uint256 jumpDisputeKitID; // A non-zero value makes the next round use this dispute kit ID. Zero is considered as undefined.
65
+
uint256 jumpDisputeKitIDOnCourtJump; // A non-zero value makes the next round use this dispute kit ID ONLY IF the court jumps and `jumpDisputeKitID` is undefined. Zero is considered as undefined.
66
+
uint256 nbVotes; // A non-zero value makes the next round use this number of votes. Zero is considered as undefined.
0 commit comments