Get the Merkle state as a base32-encoded string.
(&self)
| 38 | impl ViewInfo { |
| 39 | /// Get the Merkle state as a base32-encoded string. |
| 40 | pub fn state_base32(&self) -> String { |
| 41 | self.state.to_base32() |
| 42 | } |
| 43 | |
| 44 | /// Get a short version of the Merkle state (first 12 characters). |
| 45 | pub fn state_short(&self) -> String { |