We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b02b005 commit cfb5fd2Copy full SHA for cfb5fd2
1 file changed
ethereum/spec/src/main/java/tech/pegasys/teku/spec/executionlayer/ExecutionLayerChannelStub.java
@@ -290,10 +290,7 @@ public SafeFuture<GetPayloadResponse> engineGetPayload(
290
.transactions(transactions)
291
.withdrawals(() -> payloadAttributes.getWithdrawals().orElse(List.of()))
292
.blobGasUsed(() -> UInt64.ZERO)
293
- .excessBlobGas(() -> UInt64.ZERO)
294
- .depositRequests(() -> generateDepositRequests(state))
295
- .withdrawalRequests(List::of)
296
- .consolidationRequests(List::of));
+ .excessBlobGas(() -> UInt64.ZERO));
297
298
// we assume all blocks are produced locally
299
lastValidBlock =
0 commit comments