diff --git a/utils/host/src/rollup_config.rs b/utils/host/src/rollup_config.rs index 25f94920..c037969f 100644 --- a/utils/host/src/rollup_config.rs +++ b/utils/host/src/rollup_config.rs @@ -125,7 +125,7 @@ pub fn get_rollup_config_path(l2_chain_id: u64, run_context: RunContext) -> Resu .expect("Failed to get workspace root") .workspace_root; let rollup_config_path = - workspace_root.join(format!("/configs/{}/rollup.json", l2_chain_id)); + workspace_root.join(format!("configs/{}/rollup.json", l2_chain_id)); Ok(rollup_config_path.into()) } RunContext::Docker => {