Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update client/api/src/client.rs
Co-Authored-By: Tomasz Drwięga <[email protected]>
  • Loading branch information
drahnr and tomusdrw authored Mar 30, 2020
commit 6ae48d3454029ff0123e5b930734eb55233d7502
3 changes: 1 addition & 2 deletions client/api/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ pub type ImportNotifications<Block> = mpsc::UnboundedReceiver<BlockImportNotific
/// A stream of block finality notifications.
pub type FinalityNotifications<Block> = mpsc::UnboundedReceiver<FinalityNotification<Block>>;


/// A stream of block import events.
pub type AllBlocksNotifications<Block> = mpsc::UnboundedReceiver<AllBlocksNotification<Block>>;

Expand Down Expand Up @@ -265,4 +264,4 @@ pub struct AllBlocksNotification<Block: BlockT> {
pub header: Block::Header,
/// Is this the new best block.
pub is_new_best: bool,
}
}