MCPcopy Create free account
hub / github.com/SeismicSystems/summit / BadBlockEngineClient

Class BadBlockEngineClient

types/src/engine_client.rs:198–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196 async fn get_payload(
197 &mut self,
198 payload_id: PayloadId,
199 ) -> Result<ExecutionPayloadEnvelopeV4, EngineClientError> {
200 match self.provider.get_payload_v4(payload_id).await {
201 Ok(res) => Ok(res),
202 Err(e) if e.is_transport_error() => {
203 self.wait_until_reconnect_available().await?;
204 self.provider
205 .get_payload_v4(payload_id)
206 .await

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected