python/trezorctl: add aliases for firmware-update

pull/1173/head
matejcik 4 years ago
parent d5fe57012d
commit c244503e1f

@ -13,6 +13,8 @@ _At the moment, the project does **not** adhere to [Semantic Versioning](https:/
- `trezorctl set unsafe-prompts` controls the new "unsafe prompts" feature. [#1126]
- `trezorctl btc get-address` can create multisig addresses.
- the following commands are now equivalent in trezorctl: `firmware-update`, `firmware-upgrade`,
`update-firmware`, `upgrade-firmware`
### Changed

@ -76,6 +76,10 @@ COMMAND_ALIASES = {
"xrp": ripple.cli,
"xlm": stellar.cli,
"xtz": tezos.cli,
# firmware-update aliases:
"update-firmware": firmware.firmware_update,
"upgrade-firmware": firmware.firmware_update,
"firmware-upgrade": firmware.firmware_update,
}

Loading…
Cancel
Save