Skip to content

Commit

Permalink
chore: Add TODO comment (#491)
Browse files Browse the repository at this point in the history
* chore: Add TODO comment

* Update ticket number
  • Loading branch information
stbrody authored Aug 19, 2024
1 parent 4cb78a8 commit e2fcf71
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions store/src/sql/entities/event_block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ impl ReconEventBlockRaw {
pub async fn into_events(
all_blocks: Vec<Self>,
) -> Result<Vec<(cid::Cid, unvalidated::Event<Ipld>)>> {
// TODO(AES-311): Turn the blocks into Events in a single pass, instead of first
// turning them into a CAR file and then turning the CAR file into the Event.
let parsed = Self::into_carfiles(all_blocks).await?;
let mut res = Vec::with_capacity(parsed.len());
for (_, carfile) in parsed {
Expand Down

0 comments on commit e2fcf71

Please sign in to comment.