mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-02-03 11:46:31 +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};
|