From 25f6fd25b39887a2c01a46a403a330a227cea823 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Fri, 4 Dec 2020 18:27:11 -0500 Subject: [PATCH] Test catching panic --- zebrad/src/components/sync.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zebrad/src/components/sync.rs b/zebrad/src/components/sync.rs index d49738db..ab193cfb 100644 --- a/zebrad/src/components/sync.rs +++ b/zebrad/src/components/sync.rs @@ -254,6 +254,8 @@ where /// multiple peers #[instrument(skip(self))] async fn obtain_tips(&mut self) -> Result<(), Report> { + panic!("Everything is on fire!"); + let block_locator = self .state .ready_and()