Skip to content

Commit

Permalink
fix request_id (#1180)
Browse files Browse the repository at this point in the history
  • Loading branch information
hokaxbt authored Jan 8, 2025
1 parent ee5ceb9 commit 2026ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dipdup/datasources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ async def _jsonrpc_request(
raw: bool = False,
ws: bool = False,
) -> Any:
request_id = uuid4().hex
request_id = str(int(uuid4()))
request = {
'jsonrpc': '2.0',
'id': request_id,
Expand Down

0 comments on commit 2026ab9

Please sign in to comment.