From 823126b372b60619fb92848a5515eb07feb05821 Mon Sep 17 00:00:00 2001 From: carllin Date: Mon, 6 Jul 2020 02:39:42 -0700 Subject: [PATCH] Fix parsing (#10924) Co-authored-by: Carl --- ledger-tool/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledger-tool/src/main.rs b/ledger-tool/src/main.rs index 79df8be6f0..18d1c13f2e 100644 --- a/ledger-tool/src/main.rs +++ b/ledger-tool/src/main.rs @@ -1201,7 +1201,7 @@ fn main() { if ancestors.contains(&slot) && !map.contains_key(&slot) { map.insert(slot, line); } - if slot == starting_slot + if slot == ending_slot && frozen.contains_key(&slot) && full.contains_key(&slot) {