cuprate_fast_sync/lib.rs
1// Used in `create.rs`
2use clap as _;
3use cuprate_blockchain as _;
4use cuprate_hex as _;
5use hex as _;
6use serde_json as _;
7use tokio as _;
8
9mod fast_sync;
10
11pub use fast_sync::{
12 block_to_verified_block_information, fast_sync_stop_height, set_fast_sync_hashes,
13 validate_entries, FAST_SYNC_BATCH_LEN,
14};