Skip to content

Commit

Permalink
missing equality check after cherry-pick
Browse files Browse the repository at this point in the history
  • Loading branch information
GhenadieVP committed Sep 20, 2023
1 parent 245ed60 commit 82fbae7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Sources/EngineKit/HashableExtensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@ extension ManifestValue: Hashable {
return lhs == rhs
case let (.nonFungibleLocalIdValue(lhs), .nonFungibleLocalIdValue(rhs)):
return lhs == rhs
case let (.addressReservationValue(lhs), .addressReservationValue(rhs)):
return lhs == rhs
default:
return false
}
Expand Down

0 comments on commit 82fbae7

Please sign in to comment.