We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c2136 commit 18e5b0aCopy full SHA for 18e5b0a
pkg/gui/presentation/graph/graph.go
@@ -380,7 +380,6 @@ func equalHashes(a, b *string) bool {
380
return false
381
}
382
383
- length := min(len(*a), len(*b))
384
- // parent hashes are only stored up to 20 characters for some reason so we'll truncate to that for comparison
385
- return (*a)[:length] == (*b)[:length]
+ // We know that all hashes are stored in the pool, so we can compare their addresses
+ return a == b
386
0 commit comments