Get the Merkle state as a base32-encoded string.
(&self)
| 30 | impl ViewInfo { |
| 31 | /// Get the Merkle state as a base32-encoded string. |
| 32 | pub fn state_base32(&self) -> String { |
| 33 | self.state.to_base32() |
| 34 | } |
| 35 | |
| 36 | /// Get a short version of the Merkle state (first 12 characters). |
| 37 | pub fn state_short(&self) -> String { |