Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions syncer/src/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,6 @@ where
// If found, persist the block and send to application
self.cache_block(round, commitment, block.clone()).await;
application.report(Update::NotarizedBlock(block.clone())).await;
self.notify_subscribers(commitment, &block).await;
} else {
debug!(?round, "notarized block missing");
resolver.fetch(Request::<B>::Notarized { round }).await;
Expand Down Expand Up @@ -804,7 +803,6 @@ where
// Cache the notarization and block
self.cache_block(round, commitment, block.clone()).await;
self.cache.put_notarization(round, commitment, notarization).await;
self.notify_subscribers(commitment, &block).await;
},
}
},
Expand Down