Get the hash display length.
(&self)
| 126 | |
| 127 | /// Get the hash display length. |
| 128 | pub(crate) fn get_hash_length(&self) -> usize { |
| 129 | if self.full_hash { |
| 130 | 52 |
| 131 | } else { |
| 132 | DEFAULT_HASH_LENGTH |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | /// Resolve the change identifier to a hash. |
| 137 | /// |
no outgoing calls
no test coverage detected