A set of components that make up a complete node
| 11 | |
| 12 | /// A set of components that make up a complete node |
| 13 | pub struct ComponentSet<N, E, S, M, B, Est, H, Mer, Mon, Sig> { |
| 14 | pub network: N, |
| 15 | pub executor: E, |
| 16 | pub strategy: S, |
| 17 | pub market: M, |
| 18 | pub broadcaster: B, |
| 19 | pub estimator: Est, |
| 20 | pub health: H, |
| 21 | pub merger: Mer, |
| 22 | pub monitoring: Mon, |
| 23 | pub signer: Sig, |
| 24 | } |
| 25 | |
| 26 | impl KabuEthereumNode { |
| 27 | /// Start building components with defaults |
nothing calls this directly
no outgoing calls
no test coverage detected