formatting

This commit is contained in:
qu0b
2023-07-28 10:27:38 +02:00
parent c991516419
commit e021575d8a
2 changed files with 8 additions and 6 deletions

View File

@@ -66,12 +66,12 @@ async fn get_chain_segment() -> (Vec<BeaconSnapshot<E>>, Vec<Option<BlobSidecarL
beacon_block: Arc::new(full_block),
beacon_state: snapshot.beacon_state,
});
segment_blobs.push(
Some(harness
segment_blobs.push(Some(
harness
.chain
.get_blobs(&snapshot.beacon_block_root)
.unwrap()),
)
.unwrap(),
))
}
(segment, segment_blobs)
}