Apply error message suggestion from code review.

Co-authored-by: str4d <thestr4d@gmail.com>
This commit is contained in:
Kris Nuttycombe 2024-03-12 10:04:27 -06:00 committed by GitHub
parent 09181f458c
commit 7cfaa422bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -771,7 +771,7 @@ pub(crate) fn get_account_for_ufvk<P: consensus::Parameters>(
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())