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