diff --git a/python/.changelog.d/2535.fixed b/python/.changelog.d/2535.fixed new file mode 100644 index 000000000..55d40bfd8 --- /dev/null +++ b/python/.changelog.d/2535.fixed @@ -0,0 +1 @@ +`trezorctl ethereum sign-tx`: renamed `--gas-limit` shortcut to `-G` to avoid collision with `-t/--token` diff --git a/python/src/trezorlib/cli/ethereum.py b/python/src/trezorlib/cli/ethereum.py index 13b36a8dd..8a0e1ba2e 100644 --- a/python/src/trezorlib/cli/ethereum.py +++ b/python/src/trezorlib/cli/ethereum.py @@ -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,