Skip to content

Commit

Permalink
chore(core): fix failing style check
Browse files Browse the repository at this point in the history
  • Loading branch information
ibz committed Aug 27, 2024
1 parent e3c3264 commit 0a0c100
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rust/trezor-client/src/flows/sign_tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,9 @@ impl<'a> SignTxProgress<'a> {
TxRequestType::TXOUTPUT => ack_output_request(&self.req, psbt, network),
TxRequestType::TXMETA => ack_meta_request(&self.req, psbt),
TxRequestType::TXEXTRADATA => unimplemented!(), //TODO(stevenroose) implement
TxRequestType::TXORIGINPUT
| TxRequestType::TXORIGOUTPUT
| TxRequestType::TXPAYMENTREQ => unimplemented!(),
TxRequestType::TXORIGINPUT |
TxRequestType::TXORIGOUTPUT |
TxRequestType::TXPAYMENTREQ => unimplemented!(),
TxRequestType::TXFINISHED => unreachable!(),
}?;
self.ack_msg(ack)
Expand Down

0 comments on commit 0a0c100

Please sign in to comment.