Skip to content

Commit

Permalink
Temp fix for EL
Browse files Browse the repository at this point in the history
  • Loading branch information
zilm13 committed Dec 4, 2024
1 parent bb5d070 commit d32da5b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import tech.pegasys.teku.ethereum.executionclient.methods.EngineForkChoiceUpdatedV1;
import tech.pegasys.teku.ethereum.executionclient.methods.EngineForkChoiceUpdatedV2;
import tech.pegasys.teku.ethereum.executionclient.methods.EngineForkChoiceUpdatedV3;
import tech.pegasys.teku.ethereum.executionclient.methods.EngineForkChoiceUpdatedV4;
import tech.pegasys.teku.ethereum.executionclient.methods.EngineGetBlobsV1;
import tech.pegasys.teku.ethereum.executionclient.methods.EngineGetPayloadV1;
import tech.pegasys.teku.ethereum.executionclient.methods.EngineGetPayloadV2;
Expand Down Expand Up @@ -120,7 +119,8 @@ private Map<EngineApiMethod, EngineJsonRpcMethod<?>> electraSupportedMethods() {

methods.put(ENGINE_NEW_PAYLOAD, new EngineNewPayloadV4(executionEngineClient));
methods.put(ENGINE_GET_PAYLOAD, new EngineGetPayloadV4(executionEngineClient, spec));
methods.put(ENGINE_FORK_CHOICE_UPDATED, new EngineForkChoiceUpdatedV4(executionEngineClient));
// TODO: put V4 back
methods.put(ENGINE_FORK_CHOICE_UPDATED, new EngineForkChoiceUpdatedV3(executionEngineClient));
methods.put(ENGINE_GET_BLOBS, new EngineGetBlobsV1(executionEngineClient, spec));

return methods;
Expand Down

0 comments on commit d32da5b

Please sign in to comment.