diff --git a/src/ethereum_spec_tools/evm_tools/t8n/t8n_types.py b/src/ethereum_spec_tools/evm_tools/t8n/t8n_types.py index 6c805f80e0..4b1231c07d 100644 --- a/src/ethereum_spec_tools/evm_tools/t8n/t8n_types.py +++ b/src/ethereum_spec_tools/evm_tools/t8n/t8n_types.py @@ -356,8 +356,6 @@ def to_json(self) -> Any: data["requestsHash"] = encode_to_hex(self.requests_hash) # T8N doesn't consider the request type byte to be part of the # request - data["requests"] = [ - encode_to_hex(req) for req in self.requests - ] + data["requests"] = [encode_to_hex(req) for req in self.requests] return data