Revert to a computed websocket_url
value when json_rpc_url
is changed
This commit is contained in:
@ -31,7 +31,10 @@ impl Default for Config {
|
||||
keypair_path.to_str().unwrap().to_string()
|
||||
};
|
||||
let json_rpc_url = "http://127.0.0.1:8899".to_string();
|
||||
let websocket_url = Self::compute_websocket_url(&json_rpc_url);
|
||||
|
||||
// Empty websocket_url string indicates the client should
|
||||
// `Config::compute_websocket_url(&json_rpc_url)`
|
||||
let websocket_url = "".to_string();
|
||||
|
||||
Self {
|
||||
json_rpc_url,
|
||||
|
Reference in New Issue
Block a user