Don't divide by zero

This commit is contained in:
Michael Vines 2020-04-29 11:03:13 -07:00
parent 1018807db9
commit 6ed29b3653
1 changed files with 1 additions and 1 deletions

View File

@ -564,7 +564,7 @@ pub fn process_catchup(
let slot_distance = rpc_slot as i64 - node_slot as i64;
let slots_per_second =
(previous_slot_distance - slot_distance) as f64 / f64::from(sleep_interval);
let time_remaining = if slots_per_second < 0.0 {
let time_remaining = if slots_per_second <= 0.0 {
"".to_string()
} else {
format!(