Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated GetBlockV2 from Validator API #8490

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove BlocksV2
Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com>
  • Loading branch information
gfukushima committed Aug 1, 2024
commit 130d83c8e0e4fd8a302c1d452b77b9ff8da8b00f

This file was deleted.

Original file line number Diff line number Diff line change
@@ -111,7 +111,6 @@
import tech.pegasys.teku.beaconrestapi.handlers.v2.debug.GetChainHeadsV2;
import tech.pegasys.teku.beaconrestapi.handlers.v2.debug.GetState;
import tech.pegasys.teku.beaconrestapi.handlers.v2.validator.GetAggregateAttestationV2;
import tech.pegasys.teku.beaconrestapi.handlers.v2.validator.GetNewBlock;
import tech.pegasys.teku.beaconrestapi.handlers.v3.validator.GetNewBlockV3;
import tech.pegasys.teku.infrastructure.async.AsyncRunner;
import tech.pegasys.teku.infrastructure.async.SafeFuture;
@@ -275,7 +274,6 @@ private static RestApi create(
// Validator Handlers
.endpoint(new PostAttesterDuties(dataProvider))
.endpoint(new GetProposerDuties(dataProvider))
.endpoint(new GetNewBlock(dataProvider, spec, schemaCache))
.endpoint(new GetNewBlindedBlock(dataProvider, spec, schemaCache))
.endpoint(new GetNewBlockV3(dataProvider, schemaCache))
.endpoint(new GetAttestationData(dataProvider))

This file was deleted.

This file was deleted.