We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba7408c commit ba380c5Copy full SHA for ba380c5
rust/main/chains/hyperlane-ethereum/src/rpc_clients/fallback.rs
@@ -220,7 +220,20 @@ where
220
);
221
222
match categorize_client_response(provider_host.as_str(), method, resp) {
223
- IsOk(v) => return Ok(serde_json::from_value(v)?),
+ IsOk(v) => {
224
+ // Add log to identify content of v when no tx receipt is found
225
+ if v.is_null() {
226
+ tracing::debug!(
227
+ fallback_count = idx,
228
+ provider_index = priority.index,
229
+ provider_host = provider_host.as_str(),
230
+ method,
231
+ ?v,
232
+ "fallback_request: value is null"
233
+ );
234
+ }
235
+ return Ok(serde_json::from_value(v)?);
236
237
RetryableErr(e) | RateLimitErr(e) => errors.push(e.into()),
238
NonRetryableErr(e) => return Err(e.into()),
239
}
0 commit comments