We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2947180 commit 75c9510Copy full SHA for 75c9510
contracts/src/arbitration/KlerosCore.sol
@@ -221,7 +221,9 @@ contract KlerosCore is IArbitrator {
221
court.timesPerPeriod = _timesPerPeriod;
222
court.supportedDisputeKits[DISPUTE_KIT_CLASSIC_INDEX] = true;
223
224
- sortitionSumTrees.createTree(bytes32(0), _sortitionSumTreeK);
+ // TODO: fill the properties for Forking court.
225
+ sortitionSumTrees.createTree(bytes32(FORKING_COURT), _sortitionSumTreeK);
226
+ sortitionSumTrees.createTree(bytes32(GENERAL_COURT), _sortitionSumTreeK);
227
}
228
229
// ************************ //
0 commit comments