From e1bc6c1e55b4f6d2870685018583e4b5e16609b1 Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Thu, 25 Sep 2025 22:13:41 -0400 Subject: [PATCH] chore: expose actual debug_traceCall error Without this it was being hidden, somehow. --- protocol-testing/src/rpc.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/protocol-testing/src/rpc.rs b/protocol-testing/src/rpc.rs index e387b43..b7ddeb9 100644 --- a/protocol-testing/src/rpc.rs +++ b/protocol-testing/src/rpc.rs @@ -130,6 +130,10 @@ impl RPCProvider { .client() .request("debug_traceCall", (transaction, BlockId::from(block_number), trace_options)) .await + .map_err(|e| { + tracing::error!("debug_traceCall RPC error: {:#}", e); + e + }) .into_diagnostic() .wrap_err("Failed to debug trace call many")?;