(self, ctx: &BuilderContext<Node>)
| 1316 | type Consensus = Arc<BaseBeaconConsensus>; |
| 1317 | |
| 1318 | async fn build_consensus(self, ctx: &BuilderContext<Node>) -> eyre::Result<Self::Consensus> { |
| 1319 | Ok(Arc::new(BaseBeaconConsensus::new(ctx.chain_spec()))) |
| 1320 | } |
| 1321 | } |
| 1322 | |
| 1323 | /// Builder for [`BaseEngineValidator`]. |
nothing calls this directly
no test coverage detected