Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
PolyProgrammist committed Jul 30, 2024
1 parent c4c348e commit 5ffaae0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app_ui/address.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pub fn ui_display_hex(public_key: &crypto::PublicKeyBe) -> Result<bool, AppSW> {
{
let my_field = [Field {
name: "Wallet ID",
value: &pbkey_str,
value: pbkey_str,
}];
let my_review = MultiFieldReview::new(
&my_field,
Expand Down
2 changes: 1 addition & 1 deletion src/handlers/common/action/delegate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ pub fn handle(
_params: ActionParams,
) -> Result<(), AppSW> {
stream.reader.comm.reply(AppSW::TxParsingFail);
sign_ui::action::ui_display_delegate_error(&mut stream.reader.comm);
sign_ui::action::ui_display_delegate_error(stream.reader.comm);
Err(AppSW::TxParsingFail)
}

0 comments on commit 5ffaae0

Please sign in to comment.