diff --git a/rust/trezor-client/src/flows/sign_tx.rs b/rust/trezor-client/src/flows/sign_tx.rs index 40c72bdc73..300742b7d6 100644 --- a/rust/trezor-client/src/flows/sign_tx.rs +++ b/rust/trezor-client/src/flows/sign_tx.rs @@ -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)