From d022ea492d0b25b310f8ad102b70d042931f2cfa Mon Sep 17 00:00:00 2001 From: Row-Bear <60758353+Row-Bear@users.noreply.github.com> Date: Mon, 15 Jul 2024 14:24:53 +0200 Subject: [PATCH] Fixed default futurenet/testnet configs (#1456) 'testnet' default was using futurenet config and vice versa --- cmd/soroban-cli/src/commands/network/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/soroban-cli/src/commands/network/mod.rs b/cmd/soroban-cli/src/commands/network/mod.rs index 214f0573c..435492295 100644 --- a/cmd/soroban-cli/src/commands/network/mod.rs +++ b/cmd/soroban-cli/src/commands/network/mod.rs @@ -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",