We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd56716 commit be9b784Copy full SHA for be9b784
crates/downloader/src/download_queue.rs
@@ -73,7 +73,10 @@ pub struct DownloadQueue<P> {
73
completed: BTreeMap<u64, Block>,
74
}
75
76
-impl<P: GetBlock + Clone + Send + 'static> DownloadQueue<P> {
+impl<P> DownloadQueue<P>
77
+where
78
+ P: GetBlock + Clone + Send + 'static,
79
+{
80
pub fn start_from(provider: P, da_height: u64) -> Self {
81
Self {
82
provider,
0 commit comments