diff --git a/cmd/soroban-cli/src/commands/network/mod.rs b/cmd/soroban-cli/src/commands/network/mod.rs index d0b4f32a3..8f6524339 100644 --- a/cmd/soroban-cli/src/commands/network/mod.rs +++ b/cmd/soroban-cli/src/commands/network/mod.rs @@ -78,8 +78,6 @@ pub enum Error { InvalidUrl(String), #[error("Inproper response {0}")] InproperResponse(String), - #[error("Currently not supported on windows. Please visit:\n{0}")] - WindowsNotSupported(String), } impl Cmd { diff --git a/cmd/soroban-cli/src/config/network.rs b/cmd/soroban-cli/src/config/network.rs index ba63c016f..958150cd7 100644 --- a/cmd/soroban-cli/src/config/network.rs +++ b/cmd/soroban-cli/src/config/network.rs @@ -33,8 +33,6 @@ pub enum Error { InvalidUrl(String), #[error("Inproper response {0}")] InproperResponse(String), - #[error("Currently not supported on windows. Please visit:\n{0}")] - WindowsNotSupported(String), } #[derive(Debug, clap::Args, Clone, Default)]