-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BankingStage Refactor: Committer Simplify #29958
BankingStage Refactor: Committer Simplify #29958
Conversation
1ba5b28
to
bbf918e
Compare
bbf918e
to
59afe63
Compare
@@ -34,7 +34,6 @@ impl Committer { | |||
batch: &TransactionBatch, | |||
loaded_transactions: &mut [TransactionLoadResult], | |||
execution_results: Vec<TransactionExecutionResult>, | |||
sanitized_txs: &[SanitizedTransaction], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to have lesser arguments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^ yeah, already passing the batch which contains the sanitized transactions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm,
"find_and_send_votes", | ||
); | ||
execute_and_commit_timings.find_and_send_votes_us = find_and_send_votes_time.as_us(); | ||
let ((), find_and_send_votes_us) = measure_us!({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️ for ()
Problem
Some clean up in
committer.rs
.Summary of Changes
Fixes #