Skip to content

Commit

Permalink
change error text
Browse files Browse the repository at this point in the history
  • Loading branch information
SWvheerden committed Sep 9, 2024
1 parent 88c28a9 commit 1657018
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ fn verify() -> Result<(), LedgerDeviceError> {
Version::parse(&version).map_err(|e| LedgerDeviceError::ConversionError(e.to_string()))?;
if ledger_version < req {
return Err(LedgerDeviceError::Processing(format!(
"'Minotari Wallet' application version mismatch: expected '{}', running '{}'.",
"'Minotari Wallet' application version check failed: min version '{}', running '{}'.",
MIN_LEDGER_APP_VERSION, version
)));
}
},
Err(e) => {
return Err(LedgerDeviceError::Processing(format!(
"'Minotari Wallet' application version mismatch ({})",
"'Minotari Wallet' application version check ({})",
e
)))
},
Expand Down

0 comments on commit 1657018

Please sign in to comment.