From 8159789be04c5c218237a0bd1e1f1897fa917603 Mon Sep 17 00:00:00 2001 From: Dustin Brickwood Date: Mon, 6 Jan 2025 08:11:30 -0600 Subject: [PATCH] chore: update error message for reporting issues (#808) chore: update error message --- crates/cli/src/handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli/src/handler.rs b/crates/cli/src/handler.rs index ed32fa16b..37a8c7051 100644 --- a/crates/cli/src/handler.rs +++ b/crates/cli/src/handler.rs @@ -47,7 +47,7 @@ pub fn install() { } let panic_section = - "This is a bug. Consider reporting it at https://github.com/foundry-rs/foundry"; + "This is a bug. Consider reporting it at https://github.com/matter-labs/foundry-zksync"; let (panic_hook, debug_eyre_hook) = color_eyre::config::HookBuilder::default().panic_section(panic_section).into_hooks(); panic_hook.install();