make BlockDownloader pub

This commit is contained in:
Boog900 2024-06-18 00:56:41 +01:00
parent f0900f7594
commit 9f6a85e23f
No known key found for this signature in database
GPG key ID: 42AB1287CB0041C2

View file

@ -230,7 +230,7 @@ impl Ord for ReadyQueueBatch {
/// - request the next chain entry
/// - download an already requested batch of blocks (this might happen due to an error in the previous request
/// or because the queue of ready blocks is too large, so we need the oldest block to clear it).
struct BlockDownloader<N: NetworkZone, S, C> {
pub struct BlockDownloader<N: NetworkZone, S, C> {
/// The client pool.
client_pool: Arc<ClientPool<N>>,