Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit ff05cb8

Browse files
committed
Reduce diff a bit..
1 parent 80316b0 commit ff05cb8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

core/src/banking_stage.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,6 @@ impl BankingStage {
505505
.unwrap()
506506
})
507507
.collect();
508-
509508
Self { bank_thread_hdls }
510509
}
511510

@@ -836,7 +835,7 @@ impl BankingStage {
836835
return;
837836
}
838837
let ((metrics_action, decision), make_decision_time) = measure!(
839-
Self::make_consume_or_forward_decision(my_pubkey, poh_recorder, slot_metrics_tracker,)
838+
Self::make_consume_or_forward_decision(my_pubkey, poh_recorder, slot_metrics_tracker)
840839
);
841840
slot_metrics_tracker.increment_make_decision_us(make_decision_time.as_us());
842841

@@ -908,7 +907,7 @@ impl BankingStage {
908907
// Take metrics action after forwarding packets
909908
slot_metrics_tracker.apply_action(metrics_action);
910909
}
911-
_ => {}
910+
_ => (),
912911
}
913912
}
914913

0 commit comments

Comments
 (0)