Remove unneeded generic type from for_nullifier

This commit is contained in:
Hazel OHearn 2022-06-23 16:29:55 -03:00
parent 6956c18d31
commit 22b77c028f
No known key found for this signature in database
GPG Key ID: 8B008A957E71F0F8
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ impl OrchardDomain {
}
/// Constructs a domain from a nullifier.
pub fn for_nullifier<T>(nullifier: Nullifier) -> Self {
pub fn for_nullifier(nullifier: Nullifier) -> Self {
OrchardDomain { rho: nullifier }
}
}