Skip to content

Commit

Permalink
Fixed default futurenet/testnet configs (#1456)
Browse files Browse the repository at this point in the history
'testnet' default was using futurenet config and vice versa
  • Loading branch information
Row-Bear authored Jul 15, 2024
1 parent c02ef3b commit d022ea4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/soroban-cli/src/commands/network/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,13 @@ pub static DEFAULTS: phf::Map<&'static str, (&'static str, &'static str)> = phf_
"Standalone Network ; February 2017",
),
"futurenet" => (
"https://soroban-testnet.stellar.org",
"Test SDF Network ; September 2015",
),
"testnet" => (
"https://rpc-futurenet.stellar.org:443",
"Test SDF Future Network ; October 2022",
),
"testnet" => (
"https://soroban-testnet.stellar.org",
"Test SDF Network ; September 2015",
),
"mainnet" => (
"Bring Your Own: https://developers.stellar.org/docs/data/rpc/rpc-providers",
"Public Global Stellar Network ; September 2015",
Expand Down

0 comments on commit d022ea4

Please sign in to comment.