(&self)
| 68 | let timestamp = UInt::read(reader)?.into(); |
| 69 | let epoch = Epoch::new(height.get() / MOCK_BLOCKS_PER_EPOCH); |
| 70 | let view = View::new(height.get()); |
| 71 | let digest = D::read(reader)?; |
| 72 | |
| 73 | // Pre-compute the digest |
| 74 | Ok(Self { |
| 75 | parent, |
| 76 | height, |
| 77 | timestamp, |
| 78 | epoch, |
nothing calls this directly
no outgoing calls
no test coverage detected