fix(python/trezorctl): fix colliding option shortcut in ethereum sign-tx

fixes #2535
pull/2914/head
matejcik 1 year ago committed by matejcik
parent e2d600389b
commit 92c037d89e

@ -0,0 +1 @@
`trezorctl ethereum sign-tx`: renamed `--gas-limit` shortcut to `-G` to avoid collision with `-t/--token`

@ -309,7 +309,7 @@ def get_public_node(client: "TrezorClient", address: str, show_display: bool) ->
"-g", "--gas-limit", type=int, help="Gas limit (required for offline signing)"
)
@click.option(
"-t",
"-G",
"--gas-price",
help="Gas price (required for offline signing)",
callback=_amount_to_int,

Loading…
Cancel
Save