feat(addresses): Derive Hash on Address (#235)

authored-by: Turner <mitch@tpfs.io>
This commit is contained in:
Mitchell Turner 2023-03-14 14:10:55 -07:00 committed by GitHub
parent 8cdde5e9a8
commit 61f50b2cca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View file

@ -337,7 +337,7 @@ impl<T> Deref for CborWrap<T> {
}
}
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct TagWrap<I, const T: u64>(pub I);
impl<I, const T: u64> TagWrap<I, T> {