Skip to content

Commit

Permalink
Update prover args for batch/light client prover
Browse files Browse the repository at this point in the history
  • Loading branch information
kpp committed Oct 23, 2024
1 parent d9d0e3e commit 0a6492e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,7 @@ where
let kind = Self::node_kind();
self.node_config().map(|_| {
let config_path = dir.join(format!("{kind}_config.toml"));
let node_kind_str = match &kind {
NodeKind::BatchProver | NodeKind::LightClientProver => "prover".to_string(),
kind => kind.to_string(),
};
let node_kind_str = kind.to_string();
vec![
format!("--{node_kind_str}"),
config_path.display().to_string(),
Expand Down

0 comments on commit 0a6492e

Please sign in to comment.