File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -486,8 +486,6 @@ async function main() {
486486 }
487487
488488 let disputesWithoutJurors = await filterAsync ( disputes , async ( dispute ) => {
489- console . log ( dispute . id ) ;
490- console . log ( dispute . currentRoundIndex ) ;
491489 return ! ( await isDisputeFullyDrawn ( dispute ) ) ;
492490 } ) ;
493491
@@ -564,11 +562,11 @@ async function main() {
564562
565563 logger . info ( `Current phase: ${ PHASES [ getNumber ( await sortition . phase ( ) ) ] } ` ) ;
566564
567- for ( var disputeDetails of disputes ) {
565+ for ( var dispute of disputes ) {
568566 // ----------------------------------------------- //
569567 // PASS PERIOD //
570568 // ----------------------------------------------- //
571- await passPeriod ( disputeDetails ) ;
569+ await passPeriod ( dispute ) ;
572570 }
573571
574572 // Get all the disputes whose ruling is not yet executed
You can’t perform that action at this time.
0 commit comments