Skip to content

Commit

Permalink
Merge pull request #5427 from str4d/5321-remove-misleading-log-message
Browse files Browse the repository at this point in the history
rust: Remove misleading log message
  • Loading branch information
nuttycom committed Dec 17, 2021
2 parents 34a8677 + 1b7a031 commit 5c2d915
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rust/src/address_ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ pub extern "C" fn zcash_address_parse_unified(

let ua: UnifiedAddressHelper = match addr.convert() {
Ok(ua) => ua,
Err(e) => {
tracing::error!("{}", e);
Err(_) => {
// `KeyIO::DecodePaymentAddress` handles the rest of the address kinds.
return false;
}
};
Expand Down

0 comments on commit 5c2d915

Please sign in to comment.