mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-02 19:40:57 +00:00
feat(legacy): Warn only once about non-standard paths.
[no changelog]
This commit is contained in:
parent
df479adbe7
commit
2b401f48f8
@ -1389,11 +1389,13 @@ static bool signing_add_input(TxInputType *txinput) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!fsm_layoutPathWarning()) {
|
||||
signing_abort();
|
||||
return false;
|
||||
if (!foreign_address_confirmed) {
|
||||
if (!fsm_layoutPathWarning()) {
|
||||
signing_abort();
|
||||
return false;
|
||||
}
|
||||
foreign_address_confirmed = true;
|
||||
}
|
||||
foreign_address_confirmed = true;
|
||||
}
|
||||
|
||||
if (!fill_input_script_pubkey(coin, &root, txinput)) {
|
||||
|
Loading…
Reference in New Issue
Block a user