Skip to content

Commit

Permalink
Merge branch 'main' into alias-extract
Browse files Browse the repository at this point in the history
  • Loading branch information
fnando authored Jun 14, 2024
2 parents 1348467 + 5925d55 commit faa09e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/soroban-cli/src/commands/network/container/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ async fn run_docker_command(cmd: &Cmd) -> Result<(), Error> {
fn get_container_args(cmd: &Cmd) -> Vec<String> {
[
format!("--{}", cmd.network),
"--enable-soroban-rpc".to_string(),
"--enable rpc,horizon".to_string(),
get_protocol_version_arg(cmd),
get_limits_arg(cmd),
]
Expand All @@ -135,9 +135,9 @@ fn get_container_args(cmd: &Cmd) -> Vec<String> {
fn get_image_name(cmd: &Cmd) -> String {
// this can be overriden with the `-t` flag
let mut image_tag = match cmd.network {
Network::Testnet => "testing",
Network::Pubnet => "latest",
Network::Futurenet => "future",
_ => "latest", // default to latest for local and pubnet
_ => "testing", // default to testing for local and testnet
};

if let Some(image_override) = &cmd.image_tag_override {
Expand Down

0 comments on commit faa09e3

Please sign in to comment.