Procházet zdrojové kódy

client: Fix erroneous Cluster websocket ports (#2690)

__ před 1 rokem
rodič
revize
88f3053645
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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::Devnet => "wss://api.devnet.solana.com",
             Cluster::Testnet => "wss://api.testnet.solana.com",
             Cluster::Testnet => "wss://api.testnet.solana.com",
             Cluster::Mainnet => "wss://api.mainnet-beta.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,
             Cluster::Custom(_url, ws_url) => ws_url,
         }
         }
     }
     }