mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-20 14:39:22 +00:00
core, legacy: make sure OPRETURN ouput is not marked as change
This commit is contained in:
parent
a513f7429b
commit
0903159d9b
@ -790,6 +790,13 @@ def output_is_change(
|
||||
segwit_in: int,
|
||||
multifp: multisig.MultisigFingerprint,
|
||||
) -> bool:
|
||||
if o.script_type not in (
|
||||
OutputScriptType.PAYTOADDRESS,
|
||||
OutputScriptType.PAYTOMULTISIG,
|
||||
OutputScriptType.PAYTOWITNESS,
|
||||
OutputScriptType.PAYTOP2SHWITNESS,
|
||||
):
|
||||
return False
|
||||
if o.multisig and not multifp.matches(o.multisig):
|
||||
return False
|
||||
if output_is_segwit(o) and o.amount > segwit_in:
|
||||
|
@ -696,6 +696,13 @@ static bool signing_check_output(TxOutputType *txoutput) {
|
||||
}
|
||||
}
|
||||
|
||||
if ((txoutput->script_type != OutputScriptType_PAYTOADDRESS) &&
|
||||
(txoutput->script_type != OutputScriptType_PAYTOMULTISIG) &&
|
||||
(txoutput->script_type != OutputScriptType_PAYTOWITNESS) &&
|
||||
(txoutput->script_type != OutputScriptType_PAYTOP2SHWITNESS)) {
|
||||
is_change = false;
|
||||
}
|
||||
|
||||
if (is_change) {
|
||||
if (change_spend == 0) { // not set
|
||||
change_spend = txoutput->amount;
|
||||
|
Loading…
Reference in New Issue
Block a user