Bugfix: VoteProcessingTiming reset both counters (#26843)

This commit is contained in:
apfitzge 2022-07-29 12:56:04 -05:00 committed by GitHub
parent 69b5dd9b07
commit fbfcc3febf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ const VOTE_PROCESSING_REPORT_INTERVAL_MS: u64 = 1_000;
impl VoteProcessingTiming {
fn reset(&mut self) {
self.gossip_slot_confirming_time_us = 0;
self.gossip_txn_processing_time_us = 0;
self.gossip_slot_confirming_time_us = 0;
}