File tree 1 file changed +2
-2
lines changed
contracts/src/arbitration 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -523,11 +523,11 @@ contract KlerosCore is IArbitrator {
523
523
freezeBlock = block .number ;
524
524
} else {
525
525
// phase == Phase.freezing
526
- bool freezingPhaseFinished = this .freezingPhaseTimeout ();
526
+ bool timeout = this .freezingPhaseTimeout ();
527
527
for (int256 i = int256 (disputesKitIDsThatNeedFreezing.length ) - 1 ; i >= 0 ; -- i) {
528
528
uint256 disputeKitID = disputesKitIDsThatNeedFreezing[uint256 (i)];
529
529
IDisputeKit disputeKit = disputeKitNodes[disputesKitIDsThatNeedFreezing[uint256 (i)]].disputeKit;
530
- if (freezingPhaseFinished && ! disputeKit.isResolving ()) {
530
+ if (timeout && ! disputeKit.isResolving ()) {
531
531
// Force the dispute kit to be ready for Staking phase.
532
532
disputeKit.passPhase (); // Should not be called if already in Resolving phase, because it reverts.
533
533
require (disputeKit.isResolving (), "A dispute kit has not passed to Resolving phase " );
You can’t perform that action at this time.
0 commit comments