Skip to content

Commit be9b784

Browse files
committed
fix: tb
1 parent bd56716 commit be9b784

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/downloader/src/download_queue.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ pub struct DownloadQueue<P> {
7373
completed: BTreeMap<u64, Block>,
7474
}
7575

76-
impl<P: GetBlock + Clone + Send + 'static> DownloadQueue<P> {
76+
impl<P> DownloadQueue<P>
77+
where
78+
P: GetBlock + Clone + Send + 'static,
79+
{
7780
pub fn start_from(provider: P, da_height: u64) -> Self {
7881
Self {
7982
provider,

0 commit comments

Comments
 (0)