Remove unused event handler function (#1377)
## Issue Addressed `websocket_event_handler` has been unused since #1107.
This commit is contained in:
parent
ea0e936ac4
commit
41f7547645
@ -432,49 +432,6 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<TStoreMigrator, TSlotClock, TEth1Backend, TEthSpec, THotStore, TColdStore>
|
|
||||||
ClientBuilder<
|
|
||||||
Witness<
|
|
||||||
TStoreMigrator,
|
|
||||||
TSlotClock,
|
|
||||||
TEth1Backend,
|
|
||||||
TEthSpec,
|
|
||||||
WebSocketSender<TEthSpec>,
|
|
||||||
THotStore,
|
|
||||||
TColdStore,
|
|
||||||
>,
|
|
||||||
>
|
|
||||||
where
|
|
||||||
TStoreMigrator: Migrate<TEthSpec, THotStore, TColdStore>,
|
|
||||||
TSlotClock: SlotClock + 'static,
|
|
||||||
TEth1Backend: Eth1ChainBackend<TEthSpec> + 'static,
|
|
||||||
TEthSpec: EthSpec + 'static,
|
|
||||||
THotStore: ItemStore<TEthSpec> + 'static,
|
|
||||||
TColdStore: ItemStore<TEthSpec> + 'static,
|
|
||||||
{
|
|
||||||
/// Specifies that the `BeaconChain` should publish events using the WebSocket server.
|
|
||||||
pub fn websocket_event_handler(mut self, config: WebSocketConfig) -> Result<Self, String> {
|
|
||||||
let context = self
|
|
||||||
.runtime_context
|
|
||||||
.as_ref()
|
|
||||||
.ok_or_else(|| "websocket_event_handler requires a runtime_context")?
|
|
||||||
.service_context("ws".into());
|
|
||||||
|
|
||||||
let (sender, listening_addr): (WebSocketSender<TEthSpec>, Option<_>) = if config.enabled {
|
|
||||||
let (sender, listening_addr) =
|
|
||||||
websocket_server::start_server(context.executor, &config)?;
|
|
||||||
(sender, Some(listening_addr))
|
|
||||||
} else {
|
|
||||||
(WebSocketSender::dummy(), None)
|
|
||||||
};
|
|
||||||
|
|
||||||
self.event_handler = Some(sender);
|
|
||||||
self.websocket_listen_addr = listening_addr;
|
|
||||||
|
|
||||||
Ok(self)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<TStoreMigrator, TSlotClock, TEth1Backend, TEthSpec, THotStore, TColdStore>
|
impl<TStoreMigrator, TSlotClock, TEth1Backend, TEthSpec, THotStore, TColdStore>
|
||||||
ClientBuilder<
|
ClientBuilder<
|
||||||
Witness<
|
Witness<
|
||||||
@ -503,7 +460,7 @@ where
|
|||||||
let context = self
|
let context = self
|
||||||
.runtime_context
|
.runtime_context
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.ok_or_else(|| "websocket_event_handler requires a runtime_context")?
|
.ok_or_else(|| "tee_event_handler requires a runtime_context")?
|
||||||
.service_context("ws".into());
|
.service_context("ws".into());
|
||||||
|
|
||||||
let log = context.log().clone();
|
let log = context.log().clone();
|
||||||
|
Loading…
Reference in New Issue
Block a user