(self, ctx: &BuilderContext<Node>)
| 844 | >; |
| 845 | |
| 846 | async fn build_evm(self, ctx: &BuilderContext<Node>) -> eyre::Result<Self::EVM> { |
| 847 | let evm_config = BaseEvmConfig::new(ctx.chain_spec(), BaseRethReceiptBuilder::default()); |
| 848 | |
| 849 | Ok(evm_config) |
| 850 | } |
| 851 | } |
| 852 | |
| 853 | /// A basic Base transaction pool. |
nothing calls this directly
no test coverage detected