Merge branch 'dev/etan/df-forkedblobs' into feat_eip-7688

This commit is contained in:
Etan Kissling 2024-07-26 02:01:28 +02:00
commit 02fd912f92
No known key found for this signature in database
GPG Key ID: B21DA824C5A3D03D
3 changed files with 3 additions and 2 deletions

View File

@ -398,6 +398,7 @@ template withForkyBlckAndBlobs(
# Nim 2.0.8: `forks.BlobSidecars(blobFork)` does not work here:
# > type mismatch: got 'BlobFork' for 'blobFork`gensym15'
# but expected 'BlobSidecars'
# https://github.com/nim-lang/Nim/issues/23893
when blobFork == BlobFork.Deneb:
var fBlobs: deneb.BlobSidecars
for blob in blobs.get:

View File

@ -122,7 +122,7 @@ suite "EF - Deneb - SSZ consensus objects " & preset():
of "BeaconBlockHeader": checkSSZ(BeaconBlockHeader, path, hash)
of "BeaconState": checkSSZ(deneb.BeaconState, path, hash)
of "BlobIdentifier": checkSSZ(BlobIdentifier, path, hash)
of "BlobSidecar": checkSSZ(BlobSidecar, path, hash)
of "BlobSidecar": checkSSZ(deneb.BlobSidecar, path, hash)
of "BLSToExecutionChange": checkSSZ(BLSToExecutionChange, path, hash)
of "Checkpoint": checkSSZ(Checkpoint, path, hash)
of "ContributionAndProof": checkSSZ(ContributionAndProof, path, hash)

View File

@ -125,7 +125,7 @@ suite "EF - Electra - SSZ consensus objects " & preset():
of "BeaconBlockHeader": checkSSZ(BeaconBlockHeader, path, hash)
of "BeaconState": checkSSZ(electra.BeaconState, path, hash)
of "BlobIdentifier": checkSSZ(BlobIdentifier, path, hash)
of "BlobSidecar": checkSSZ(BlobSidecar, path, hash)
of "BlobSidecar": checkSSZ(deneb.BlobSidecar, path, hash)
of "BLSToExecutionChange": checkSSZ(BLSToExecutionChange, path, hash)
of "Checkpoint": checkSSZ(Checkpoint, path, hash)
of "ConsolidationRequest": checkSSZ(ConsolidationRequest, path, hash)