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 1062d00 commit 69e6e23Copy full SHA for 69e6e23
benchmarks/ens/fake_rpc.py
@@ -41,5 +41,5 @@ def fake_json_rpc_response(request_data: dict):
41
}
42
else:
43
return {"jsonrpc": "2.0", "id": request_data["id"], "result": "0x"}
44
- # Default: always return a valid result for any other method
45
- return {"jsonrpc": "2.0", "id": request_data["id"], "result": None}
+ # Default: always return a valid hex string for any other method
+ return {"jsonrpc": "2.0", "id": request_data["id"], "result": "0x"}
0 commit comments