File tree 1 file changed +2
-4
lines changed 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -486,8 +486,6 @@ async function main() {
486
486
}
487
487
488
488
let disputesWithoutJurors = await filterAsync ( disputes , async ( dispute ) => {
489
- console . log ( dispute . id ) ;
490
- console . log ( dispute . currentRoundIndex ) ;
491
489
return ! ( await isDisputeFullyDrawn ( dispute ) ) ;
492
490
} ) ;
493
491
@@ -564,11 +562,11 @@ async function main() {
564
562
565
563
logger . info ( `Current phase: ${ PHASES [ getNumber ( await sortition . phase ( ) ) ] } ` ) ;
566
564
567
- for ( var disputeDetails of disputes ) {
565
+ for ( var dispute of disputes ) {
568
566
// ----------------------------------------------- //
569
567
// PASS PERIOD //
570
568
// ----------------------------------------------- //
571
- await passPeriod ( disputeDetails ) ;
569
+ await passPeriod ( dispute ) ;
572
570
}
573
571
574
572
// Get all the disputes whose ruling is not yet executed
You can’t perform that action at this time.
0 commit comments