Get the hash display length.
(&self)
| 151 | |
| 152 | /// Get the hash display length. |
| 153 | pub(crate) fn get_hash_length(&self) -> usize { |
| 154 | if self.full_hash { |
| 155 | 52 |
| 156 | } else { |
| 157 | DEFAULT_HASH_LENGTH |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | /// Resolve the change identifier to a hash. |
| 162 | /// |
no outgoing calls
no test coverage detected