diff --git a/pkg/gui/presentation/graph/graph.go b/pkg/gui/presentation/graph/graph.go index 80f6188db..5c5240fdd 100644 --- a/pkg/gui/presentation/graph/graph.go +++ b/pkg/gui/presentation/graph/graph.go @@ -380,7 +380,6 @@ func equalHashes(a, b *string) bool { return false } - length := min(len(*a), len(*b)) - // parent hashes are only stored up to 20 characters for some reason so we'll truncate to that for comparison - return (*a)[:length] == (*b)[:length] + // We know that all hashes are stored in the pool, so we can compare their addresses + return a == b }