(&mut self, _fork_choice_state: ForkchoiceState)
| 185 | fn default() -> Self { |
| 186 | Self::new() |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | impl EngineClient for MockEngineClient { |
| 191 | #[allow(unused_variables)] |
| 192 | async fn start_building_block( |
| 193 | &mut self, |
| 194 | _fork_choice_state: ForkchoiceState, |
| 195 | _timestamp: u64, |
| 196 | _withdrawals: Vec<alloy_eips::eip4895::Withdrawal>, |
| 197 | _suggested_fee_recipient: Address, |
| 198 | _parent_beacon_block_root: Option<FixedBytes<32>>, |
| 199 | #[cfg(feature = "bench")] height: u64, |
| 200 | ) -> Result<Option<PayloadId>, summit_types::EngineClientError> { |
| 201 | Ok(Some(PayloadId::new([0u8; 8]))) |
no outgoing calls
no test coverage detected