Skip to content

Commit

Permalink
fix: re-enable edits processing
Browse files Browse the repository at this point in the history
  • Loading branch information
cvauclair committed Nov 28, 2024
1 parent 71a52b2 commit e5f5505
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions node/src/events/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ impl substreams_sink_rust::Sink for EventHandler {
let value = GeoOutput::decode(output.value.as_slice())?;

// Handle new space creation
let _created_space_ids = self
let created_space_ids = self
.handle_spaces_created(&value.spaces_created, &value.proposals_processed, &block)
.await?;

Expand Down Expand Up @@ -108,8 +108,8 @@ impl substreams_sink_rust::Sink for EventHandler {
.await?;

// Handle proposal processing
// self.handle_proposals_processed(&value.proposals_processed, &created_space_ids, &block)
// .await?;
self.handle_proposals_processed(&value.proposals_processed, &created_space_ids, &block)
.await?;

// Handle members added
stream::iter(&value.members_added)
Expand Down

0 comments on commit e5f5505

Please sign in to comment.