Skip to content

Commit

Permalink
panic on failed registration
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid committed Sep 13, 2023
1 parent e28901f commit af45ce0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/chainhook-sdk/src/observer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1409,7 +1409,8 @@ pub async fn start_observer_commands_handler(
e.to_string()
)
});
continue;
panic!("Unable to register new chainhook spec: {}", e.to_string());
//continue;
}
};
ctx.try_log(|logger| slog::info!(logger, "Registering chainhook {}", spec.uuid(),));
Expand Down

0 comments on commit af45ce0

Please sign in to comment.