From c2c51d7d76335504ae714e56801e9e10d47ec301 Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Fri, 12 Jul 2019 10:32:06 +0200 Subject: [PATCH] python: fix incorrect address example in NEM's get_address help closes #325 --- python/trezorctl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/trezorctl b/python/trezorctl index 9d15f9cee..3f17f5de1 100755 --- a/python/trezorctl +++ b/python/trezorctl @@ -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)