Skip to content

Commit

Permalink
t8n: include request_type byte in result.requests
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Dec 3, 2024
1 parent feda402 commit 5ab9df4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ethereum_spec_tools/evm_tools/t8n/t8n_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def to_json(self) -> Any:
# T8N doesn't consider the request type byte to be part of the
# request
data["requests"] = [
encode_to_hex(req[1:]) for req in self.requests
encode_to_hex(req) for req in self.requests
]

return data

0 comments on commit 5ab9df4

Please sign in to comment.