Skip to content

Commit

Permalink
Update pyk/src/pyk/kore/rpc.py
Browse files Browse the repository at this point in the history
Co-authored-by: Tamás Tóth <[email protected]>
  • Loading branch information
nwatson22 and tothtamas28 authored Jul 16, 2024
1 parent 4580cc7 commit 618419b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyk/src/pyk/kore/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def close(self) -> None:

def request(self, method: str, **params: Any) -> dict[str, Any]:
old_id = self._req_id
req_id = f'{id(self)}_{old_id:03}'
req_id = f'{id(self)}-{old_id:03}'
self._req_id += 1

payload = {
Expand Down

0 comments on commit 618419b

Please sign in to comment.