| 145 | const VERSION: u32 = 2; |
| 146 | |
| 147 | /// Per-block recorded statistics. |
| 148 | #[derive(Clone, Debug, PartialEq, Eq)] |
| 149 | pub struct BlockEntry { |
| 150 | /// Content address of the block (a `Muts` block or a standalone constant). |
| 151 | pub addr: Address, |
| 152 | /// Total recursive fuel (heartbeats) consumed checking this block's members. |
| 153 | pub heartbeats: u64, |
| 154 | /// Serialized byte length of the block (ingress cost / net weight). |
| 155 | pub serialized_size: u32, |
| 156 | /// Number of constants in the block (1 for standalone constants). |
nothing calls this directly
no outgoing calls
no test coverage detected