Merge pull request #679 from zcash/daa-fix-missing-bound

zcash_client_backend: Fix missing bound
This commit is contained in:
Kris Nuttycombe 2022-10-14 15:29:54 -06:00 committed by GitHub
commit 022964056f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ where
E: From<Error<N>>,
P: consensus::Parameters,
R: Copy + Debug,
D: WalletWrite<Error = E, TxRef = R>,
D: WalletWrite<Error = E, TxRef = R, UtxoRef = U>,
{
let account = wallet_db
.get_account_for_ufvk(&usk.to_unified_full_viewing_key())?