1 2 3 4 5 6 7 8
#![allow(clippy::integer_arithmetic)] #[cfg(target_arch = "bpf")] #[macro_use] extern crate matches; pub mod merkle_tree; pub use merkle_tree::MerkleTree;
1 2 3 4 5 6 7 8
#![allow(clippy::integer_arithmetic)] #[cfg(target_arch = "bpf")] #[macro_use] extern crate matches; pub mod merkle_tree; pub use merkle_tree::MerkleTree;