Skip to content

Commit

Permalink
client: Fix erroneous Cluster websocket ports (#2690)
Browse files Browse the repository at this point in the history
  • Loading branch information
fschr authored Oct 31, 2023
1 parent 150fc3e commit 88f3053
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}
Expand Down

1 comment on commit 88f3053

@vercel
Copy link

@vercel vercel bot commented on 88f3053 Oct 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

anchor-docs – ./

www.anchor-lang.com
anchor-docs-200ms.vercel.app
anchor-docs-git-master-200ms.vercel.app
anchor-lang.com

Please sign in to comment.