extract determine_new_blocks into a separate utility (#3261)

* extract determine_new_blocks into a separate utility

* rework docs
This commit is contained in:
Robert Habermeier
2021-06-16 20:10:50 +01:00
committed by GitHub
parent 0da70dfa88
commit 462ca043e5
3 changed files with 532 additions and 524 deletions
+2
View File
@@ -54,6 +54,7 @@ use thiserror::Error;
pub use metered_channel as metered;
pub use polkadot_node_network_protocol::MIN_GOSSIP_PEERS;
pub use determine_new_blocks::determine_new_blocks;
/// Error classification.
pub use error_handling::{Fault, unwrap_non_fatal};
@@ -72,6 +73,7 @@ pub mod runtime;
/// A rolling session window cache.
pub mod rolling_session_window;
mod determine_new_blocks;
mod error_handling;
#[cfg(test)]