diff --git a/web3_proxy/src/app/mod.rs b/web3_proxy/src/app/mod.rs index 4671b776..768a55a2 100644 --- a/web3_proxy/src/app/mod.rs +++ b/web3_proxy/src/app/mod.rs @@ -1177,9 +1177,16 @@ impl App { // no idea how we got an array here, but lets force this to just the txid // TODO: think about this more if value.get().starts_with('[') { + let backend_rpcs = web3_request + .backend_rpcs_used() + .iter() + .map(|x| x.name.as_str()) + .collect::>(); + error!( ?value, ?txid, + ?backend_rpcs, "unexpected array response from sendRawTransaction" ); response = ForwardedResponse::from(json!(txid));