Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/config/docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::utils::get_genesis_path;

const DEFAULT_BITCOIN_DOCKER_IMAGE: &str = "bitcoin/bitcoin:28.0";
const DEFAULT_CITREA_DOCKER_IMAGE: &str =
"chainwayxyz/citrea-test:f4e3f560c083d949779b5bd0706f945ebd405622";
"chainwayxyz/citrea-test:57f9b46a366413f2e5b04a2bca07abcc21ad0dde";

#[derive(Debug)]
pub struct VolumeConfig {
Expand Down
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
Loading