From 0a0c1004c8dfd6e68181543acc75f457ea854747 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ioan=20Biz=C4=83u?= Date: Tue, 27 Aug 2024 13:59:34 +0200 Subject: [PATCH] chore(core): fix failing style check --- rust/trezor-client/src/flows/sign_tx.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)