Browse Source

client: Fix erroneous Cluster websocket ports (#2690)

__ 1 year ago
parent
commit
88f3053645
1 changed files with 2 additions and 2 deletions
  1. 2 2
      client/src/cluster.rs

+ 2 - 2
client/src/cluster.rs

@@ -87,8 +87,8 @@ impl Cluster {
             Cluster::Devnet => "wss://api.devnet.solana.com",
             Cluster::Testnet => "wss://api.testnet.solana.com",
             Cluster::Mainnet => "wss://api.mainnet-beta.solana.com",
-            Cluster::Localnet => "ws://127.0.0.1:9000",
-            Cluster::Debug => "ws://34.90.18.145:9000",
+            Cluster::Localnet => "ws://127.0.0.1:8900",
+            Cluster::Debug => "ws://34.90.18.145:8900",
             Cluster::Custom(_url, ws_url) => ws_url,
         }
     }