mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-01-12 05:45:06 +00:00
c840053854
* consensus: enable workspace lints * rules/fast-sync: enable workspace lints * typos * fixes * `PoW` -> proof-of-work
10 lines
187 B
Rust
10 lines
187 B
Rust
// Used in `create.rs`
|
|
use clap as _;
|
|
use cuprate_blockchain as _;
|
|
use hex as _;
|
|
use tokio as _;
|
|
|
|
pub mod fast_sync;
|
|
pub mod util;
|
|
|
|
pub use util::{hash_of_hashes, BlockId, HashOfHashes};
|