Skip to content

Commit

Permalink
Reduce diff a bit..
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Jan 14, 2023
1 parent 80316b0 commit ff05cb8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/src/banking_stage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,6 @@ impl BankingStage {
.unwrap()
})
.collect();

Self { bank_thread_hdls }
}

Expand Down Expand Up @@ -836,7 +835,7 @@ impl BankingStage {
return;
}
let ((metrics_action, decision), make_decision_time) = measure!(
Self::make_consume_or_forward_decision(my_pubkey, poh_recorder, slot_metrics_tracker,)
Self::make_consume_or_forward_decision(my_pubkey, poh_recorder, slot_metrics_tracker)
);
slot_metrics_tracker.increment_make_decision_us(make_decision_time.as_us());

Expand Down Expand Up @@ -908,7 +907,7 @@ impl BankingStage {
// Take metrics action after forwarding packets
slot_metrics_tracker.apply_action(metrics_action);
}
_ => {}
_ => (),
}
}

Expand Down

0 comments on commit ff05cb8

Please sign in to comment.