| 363 | |
| 364 | async fn get_payload( |
| 365 | &mut self, |
| 366 | payload_id: PayloadId, |
| 367 | ) -> Result<ExecutionPayloadEnvelopeV4, EngineClientError> { |
| 368 | match self.provider.get_payload_v4(payload_id).await { |
| 369 | Ok(res) => Ok(res), |
| 370 | Err(e) if e.is_transport_error() => { |
| 371 | self.wait_until_reconnect_available().await?; |
nothing calls this directly
no outgoing calls
no test coverage detected