blockchain_core/
lib.rs

1//! Common trait definitions related to block context.
2
3#![cfg_attr(not(feature = "std"), no_std)]
4
5extern crate alloc;
6
7mod traits;
8pub use crate::traits::*;