From 458d6e1b4b99625fca4c883d7949bedc3c80d1ab Mon Sep 17 00:00:00 2001 From: Andrew Kozlik Date: Sat, 5 Feb 2022 10:51:10 +0100 Subject: [PATCH] fix(trezorctl): Fix BIP-32 path in CoSi help. [no changelog] --- python/src/trezorlib/cli/cosi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/trezorlib/cli/cosi.py b/python/src/trezorlib/cli/cosi.py index 8f9e9aeba..4607e7982 100644 --- a/python/src/trezorlib/cli/cosi.py +++ b/python/src/trezorlib/cli/cosi.py @@ -25,7 +25,7 @@ if TYPE_CHECKING: from ..client import TrezorClient from .. import messages -PATH_HELP = "BIP-32 path, e.g. m/44'/0'/0'/0/0" +PATH_HELP = "BIP-32 path, e.g. m/10018'/0'" @click.group(name="cosi")