From 7cfaa422bcd23c50ba2dfdee30af2cc3891a3ec0 Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 12 Mar 2024 10:04:27 -0600 Subject: [PATCH] Apply error message suggestion from code review. Co-authored-by: str4d --- zcash_client_sqlite/src/wallet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zcash_client_sqlite/src/wallet.rs b/zcash_client_sqlite/src/wallet.rs index 7bcc0f0090..ed85308767 100644 --- a/zcash_client_sqlite/src/wallet.rs +++ b/zcash_client_sqlite/src/wallet.rs @@ -771,7 +771,7 @@ pub(crate) fn get_account_for_ufvk( if accounts.len() > 1 { Err(SqliteClientError::CorruptedData( - "Mutiple account records correspond to a single UFVK".to_owned(), + "Mutiple account records matched the provided UFVK".to_owned(), )) } else { Ok(accounts.into_iter().next())