diff --git a/dank_mids/controller.py b/dank_mids/controller.py index e05b683c..51f87834 100644 --- a/dank_mids/controller.py +++ b/dank_mids/controller.py @@ -137,7 +137,7 @@ async def make_request(self, method: str, params: List[Any], request_id: Optiona return await _session.post(self.endpoint, data=request, loads=_decode.raw) except Exception as e: if ENVS.DEBUG: - _debugging.failures.record(self.chain_id, e, "unknown", "unknown", request.data) + _debugging.failures.record(self.chain_id, e, "eth_call" if method == "eth_call" else "RPCRequest", "unknown", request.data) raise async def execute_batch(self) -> None: