Skip to content

Commit 4cbed84

Browse files
committed
sign_tx: remove incorrect liquid check for confirming btc tx outputs
Suggested-by: Jamie C. Driver <[email protected]>
1 parent 276d34b commit 4cbed84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/process/sign_tx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ static void sign_tx_impl(jade_process_t* process, const bool for_liquid)
602602
}
603603
} else {
604604
// Bitcoin: Confirm all non-change outputs
605-
if (for_liquid && !show_btc_transaction_outputs_activity(network_id, tx, output_info)) {
605+
if (!show_btc_transaction_outputs_activity(network_id, tx, output_info)) {
606606
cancelmsg = "User declined to sign transaction";
607607
}
608608
}

0 commit comments

Comments
 (0)