chore(rpc): remove parent beacon root from conversion functions (#10090)

This commit is contained in:
Roman Krasiuk
2024-08-05 08:36:33 -07:00
committed by GitHub
parent 6f8cba6bc0
commit 5a8a7bc8e7
6 changed files with 17 additions and 20 deletions

View File

@ -112,7 +112,7 @@ impl From<EthBuiltPayload> for ExecutionPayloadEnvelopeV3 {
let EthBuiltPayload { block, fees, sidecars, .. } = value;
Self {
execution_payload: block_to_payload_v3(block).0,
execution_payload: block_to_payload_v3(block),
block_value: fees,
// From the engine API spec:
//