Revert "merge cleanuo"

This reverts commit 5e98326878.
This commit is contained in:
realbigsean
2023-03-21 16:03:53 -04:00
parent 5e98326878
commit 3a4009443a
4 changed files with 60 additions and 76 deletions

View File

@@ -47,7 +47,8 @@ pub struct BlobSidecar<T: EthSpec> {
pub kzg_proof: KzgProof,
}
pub type BlobSidecarList<T> = VariableList<Arc<BlobSidecar<T>>, <T as EthSpec>::MaxBlobsPerBlock>;
pub type BlobSidecarList<T> =
VariableList<Arc<BlobSidecar<T>>, <T as EthSpec>::MaxBlobsPerBlock>;
pub type Blobs<T> = VariableList<Blob<T>, <T as EthSpec>::MaxExtraDataBytes>;
impl<T: EthSpec> SignedRoot for BlobSidecar<T> {}