mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-17 11:52:42 +00:00
Tidy grpc and misc things
This commit is contained in:
@@ -25,7 +25,6 @@ pub struct Client<T: BeaconChainTypes> {
|
||||
libp2p_network: Option<Arc<NetworkService<T>>>,
|
||||
http_listen_addr: Option<SocketAddr>,
|
||||
websocket_listen_addr: Option<SocketAddr>,
|
||||
grpc_listen_addr: Option<(String, u16)>,
|
||||
/// Exit signals will "fire" when dropped, causing each service to exit gracefully.
|
||||
_exit_signals: Vec<Signal>,
|
||||
}
|
||||
@@ -41,11 +40,6 @@ impl<T: BeaconChainTypes> Client<T> {
|
||||
self.http_listen_addr
|
||||
}
|
||||
|
||||
/// Returns the address of the client's gRPC API server, if it was started.
|
||||
pub fn grpc_listen_addr(&self) -> Option<(String, u16)> {
|
||||
self.grpc_listen_addr.clone()
|
||||
}
|
||||
|
||||
/// Returns the address of the client's WebSocket API server, if it was started.
|
||||
pub fn websocket_listen_addr(&self) -> Option<SocketAddr> {
|
||||
self.websocket_listen_addr
|
||||
|
||||
Reference in New Issue
Block a user