1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

python: fix incorrect address example in NEM's get_address help

closes #325
This commit is contained in:
Tomas Susanka 2019-07-12 10:32:06 +02:00
parent 87e6cb1089
commit c2c51d7d76

View File

@ -1524,7 +1524,7 @@ def cardano_get_public_key(connect, address):
@cli.command(help="Get NEM address for specified path.")
@click.option(
"-n", "--address", required=True, help="BIP-32 path, e.g. m/44'/0'/43'/0/0"
"-n", "--address", required=True, help="BIP-32 path, e.g. m/44'/43'/0'"
)
@click.option("-N", "--network", type=int, default=0x68)
@click.option("-d", "--show-display", is_flag=True)