diff --git a/python/src/rpc.py b/python/src/rpc.py index 813cfc0..5aee157 100644 --- a/python/src/rpc.py +++ b/python/src/rpc.py @@ -150,7 +150,7 @@ def _handle_response(self, result: requests.Response, method: str) -> dict: except json.decoder.JSONDecodeError: raise ServerError( status_code=result.status_code, - message=f"Unable to parse response for RPC response from `{method}`: {result.status_code} - {result.reason}. Please try again later.", + message=f"Unable to parse response for RPC response from `{method}`: {result.status_code} - {result.reason}. Please check your request and try again later.", ) return data