fix: allow unknown fields in ExecutionPayloadV1 (#4733)

This commit is contained in:
Dan Cline
2023-09-22 17:22:22 -04:00
committed by GitHub
parent 5c028cc54d
commit b6e452b2cf

View File

@ -119,7 +119,7 @@ pub struct ExecutionPayloadEnvelopeV3 {
///
/// See also: <https://github.com/ethereum/execution-apis/blob/6709c2a795b707202e93c4f2867fa0bf2640a84f/src/engine/paris.md#executionpayloadv1>
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase", deny_unknown_fields)]
#[serde(rename_all = "camelCase")]
pub struct ExecutionPayloadV1 {
pub parent_hash: H256,
pub fee_recipient: Address,