Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarry committed Aug 9, 2024
1 parent edc5214 commit 6ee6d40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/banking_stage/consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub struct ExecuteAndCommitTransactionsOutput {

#[derive(Debug, Default, PartialEq)]
pub struct LeaderProcessedTransactionCounts {
// Total number of transactions that were passed as candidates for execution
// Total number of transactions that were passed as candidates for processing
pub(crate) attempted_processing_count: u64,
// The number of transactions of that were processed. See description of in `ProcessTransactionsSummary`
// for possible outcomes of execution.
Expand Down Expand Up @@ -1172,7 +1172,7 @@ mod tests {
transaction_counts,
LeaderProcessedTransactionCounts {
attempted_processing_count: 1,
// Transactions was still executed, just wasn't committed, so should be counted here.
// Transaction was still processed, just wasn't committed, so should be counted here.
processed_count: 1,
processed_with_successful_result_count: 1,
}
Expand Down

0 comments on commit 6ee6d40

Please sign in to comment.