1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-24 07:18:09 +00:00

chore(core): fix failing style check

This commit is contained in:
Ioan Bizău 2024-08-27 13:59:34 +02:00 committed by Ioan Bizău
parent e3c3264f68
commit 0a0c1004c8

View File

@ -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)