rename blob arc list to blob list

This commit is contained in:
realbigsean
2023-03-21 15:34:24 -04:00
parent ecfa9e7555
commit c1ecaa9a53
6 changed files with 18 additions and 18 deletions

View File

@@ -49,7 +49,7 @@ pub struct BlobSidecar<T: EthSpec> {
pub type BlobSidecarList<T> = VariableList<BlobSidecar<T>, <T as EthSpec>::MaxBlobsPerBlock>;
//TODO(sean) is there any other way around this? need it arc blobs for caching in multiple places
pub type BlobSidecarArcList<T> =
pub type BlobSidecarList<T> =
VariableList<Arc<BlobSidecar<T>>, <T as EthSpec>::MaxBlobsPerBlock>;
pub type Blobs<T> = VariableList<Blob<T>, <T as EthSpec>::MaxExtraDataBytes>;