1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
crate::ix!(); #[derive(PartialEq)] pub struct TxStatsInfo { block_height: u32, bucket_index: u32, } impl Default for TxStatsInfo { fn default() -> Self { todo!(); /* : block_height(0), : bucket_index(0), */ } }