Skip to main content

uhash_types/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3mod challenge;
4mod difficulty;
5mod proof;
6
7pub use challenge::Challenge;
8pub use difficulty::Difficulty;
9pub use proof::Proof;