Get the Merkle state as a base32-encoded string.
(&self)
| 21 | impl ViewInfo { |
| 22 | /// Get the Merkle state as a base32-encoded string. |
| 23 | pub fn state_base32(&self) -> String { |
| 24 | self.state.to_base32() |
| 25 | } |
| 26 | |
| 27 | /// Get a short version of the Merkle state (first 12 characters). |
| 28 | pub fn state_short(&self) -> String { |