Skip to content

Commit

Permalink
Update network container start to use testing quickstart tag for local
Browse files Browse the repository at this point in the history
network
  • Loading branch information
elizabethengelman committed Jun 11, 2024
1 parent 03e2d85 commit 9313892
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/soroban-cli/src/commands/network/container/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 9313892

Please sign in to comment.