Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Nov 7, 2023
1 parent 57dcf79 commit 5e804a3
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
import tech.pegasys.teku.spec.datastructures.blobs.versions.deneb.Blob;
import tech.pegasys.teku.spec.datastructures.blobs.versions.deneb.BlobKzgCommitmentsSchema;
import tech.pegasys.teku.spec.datastructures.blobs.versions.deneb.BlobSchema;
import tech.pegasys.teku.spec.datastructures.blobs.versions.deneb.BlobSidecarSchema;
import tech.pegasys.teku.spec.datastructures.blobs.versions.deneb.BlobSidecarSchemaOld;
import tech.pegasys.teku.spec.datastructures.blobs.versions.deneb.SignedBlindedBlobSidecarSchema;
import tech.pegasys.teku.spec.datastructures.blobs.versions.deneb.SignedBlobSidecarSchema;
import tech.pegasys.teku.spec.datastructures.blobs.versions.deneb.SignedBlobSidecarSchemaOld;
import tech.pegasys.teku.spec.datastructures.blocks.BeaconBlockSchema;
import tech.pegasys.teku.spec.datastructures.blocks.BlockContainer;
import tech.pegasys.teku.spec.datastructures.blocks.BlockContainerSchema;
Expand Down Expand Up @@ -81,8 +81,8 @@ public class SchemaDefinitionsDeneb extends SchemaDefinitionsCapella {

private final BlobSchema blobSchema;
private final SszListSchema<Blob, ? extends SszList<Blob>> blobsInBlockSchema;
private final BlobSidecarSchema blobSidecarSchema;
private final SignedBlobSidecarSchema signedBlobSidecarSchema;
private final BlobSidecarSchemaOld blobSidecarSchema;
private final SignedBlobSidecarSchemaOld signedBlobSidecarSchema;
private final BlindedBlobSidecarSchema blindedBlobSidecarSchema;
private final SignedBlindedBlobSidecarSchema signedBlindedBlobSidecarSchema;
private final BlockContentsSchema blockContentsSchema;
Expand Down Expand Up @@ -135,8 +135,8 @@ public SchemaDefinitionsDeneb(final SpecConfigDeneb specConfig) {

this.blobSchema = new BlobSchema(specConfig);
this.blobsInBlockSchema = SszListSchema.create(blobSchema, specConfig.getMaxBlobsPerBlock());
this.blobSidecarSchema = BlobSidecarSchema.create(blobSchema);
this.signedBlobSidecarSchema = SignedBlobSidecarSchema.create(blobSidecarSchema);
this.blobSidecarSchema = BlobSidecarSchemaOld.create(blobSchema);
this.signedBlobSidecarSchema = SignedBlobSidecarSchemaOld.create(blobSidecarSchema);
this.blindedBlobSidecarSchema = BlindedBlobSidecarSchema.create();
this.signedBlindedBlobSidecarSchema =
SignedBlindedBlobSidecarSchema.create(blindedBlobSidecarSchema);
Expand Down Expand Up @@ -270,11 +270,11 @@ public BlobKzgCommitmentsSchema getBlobKzgCommitmentsSchema() {
return blobsInBlockSchema;
}

public BlobSidecarSchema getBlobSidecarSchema() {
public BlobSidecarSchemaOld getBlobSidecarSchema() {
return blobSidecarSchema;
}

public SignedBlobSidecarSchema getSignedBlobSidecarSchema() {
public SignedBlobSidecarSchemaOld getSignedBlobSidecarSchema() {
return signedBlobSidecarSchema;
}

Expand Down

0 comments on commit 5e804a3

Please sign in to comment.