File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -436,6 +436,10 @@ async function main() {
436
436
numberOfMissingJurors = await getMissingJurors ( dispute ) ;
437
437
} while ( ! numberOfMissingJurors . eq ( 0 ) && ! maxDrawingTimePassed ) ;
438
438
}
439
+
440
+ // ----------------------------------------------- //
441
+ // BACK TO STAKING PHASE //
442
+ // ----------------------------------------------- //
439
443
// At this point, either all disputes are fully drawn or max drawing time has passed
440
444
let i = 0 ;
441
445
while ( ! ( await isPhaseStaking ( ) ) && i ++ < 3 ) {
@@ -444,10 +448,6 @@ async function main() {
444
448
}
445
449
}
446
450
447
- // ----------------------------------------------- //
448
- // STAKING PHASE //
449
- // ----------------------------------------------- //
450
-
451
451
await sendHeartbeat ( ) ;
452
452
453
453
for ( var dispute of disputes ) {
@@ -537,7 +537,6 @@ async function main() {
537
537
// ----------------------------------------------- //
538
538
// EXECUTE DELAYED STAKES //
539
539
// ----------------------------------------------- //
540
-
541
540
// delayedStakes = 1 + delayedStakeWriteIndex - delayedStakeReadIndex
542
541
const delayedStakes = BigNumber . from ( 1 )
543
542
. add ( await sortition . delayedStakeWriteIndex ( ) )
You can’t perform that action at this time.
0 commit comments