flip delta time

This commit is contained in:
GroovieGermanikus 2024-04-29 15:27:41 +02:00
parent 28c3041def
commit 2d65f2d688
No known key found for this signature in database
GPG Key ID: 5B6EB831A5CD2015
1 changed files with 1 additions and 2 deletions

View File

@ -140,8 +140,7 @@ fn start_tracking_account_consumer(mut geyser_messages_rx: Receiver<Message>) {
info!("Deltas histogram: {}", deltas_histogram);
if let Some(actual_block_time) = block_time_per_slot.get(&current_slot) {
let now = get_epoch_sec();
info!("Block time for slot {}: delta {} seconds", current_slot, *actual_block_time - now);
info!("Block time for slot {}: delta {} seconds", current_slot, account_receive_time - *actual_block_time);
}
}