pub trait OnNodeStartedHook<Node: FullNodeComponents, AddOns: NodeAddOns<Node>>: Send {
// Required method
fn on_event(self: Box<Self>, node: FullNode<Node, AddOns>) -> Result<()>;
}
Expand description
A helper trait that is run once the node is started.