Commit 1531b19 1 parent 7eef947 commit 1531b19 Copy full SHA for 1531b19
File tree 1 file changed +2
-2
lines changed
packages/beacon-node/src/execution/engine
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ type ExecutionPayloadRpcWithValue = {
116
116
// even though CL tracks this as executionPayloadValue, EL returns this as blockValue
117
117
blockValue : QUANTITY ;
118
118
blobsBundle ?: BlobsBundleRpc ;
119
- requests ?: ExecutionRequestsRpc ;
119
+ executionRequests ?: ExecutionRequestsRpc ;
120
120
shouldOverrideBuilder ?: boolean ;
121
121
} ;
122
122
type ExecutionPayloadResponse = ExecutionPayloadRpc | ExecutionPayloadRpcWithValue ;
@@ -266,7 +266,7 @@ export function parseExecutionPayload(
266
266
executionPayloadValue = quantityToBigint ( response . blockValue ) ;
267
267
data = response . executionPayload ;
268
268
blobsBundle = response . blobsBundle ? parseBlobsBundle ( response . blobsBundle ) : undefined ;
269
- executionRequests = response . requests ? deserializeExecutionRequests ( response . requests ) : undefined ;
269
+ executionRequests = response . executionRequests ? deserializeExecutionRequests ( response . executionRequests ) : undefined ;
270
270
shouldOverrideBuilder = response . shouldOverrideBuilder ?? false ;
271
271
} else {
272
272
data = response ;
You can’t perform that action at this time.
0 commit comments