chainlib

Generic blockchain access library and tooling
Log | Files | Refs | README | LICENSE

commit 65830cebed57747a3c3aa081db74e675b4c183a2
parent 91d9654052839d34a166278c7c183e68629df823
Author: lash <dev@holbrook.no>
Date:   Thu, 12 May 2022 08:19:54 +0000

Correct type for 'unsafe' flag

Diffstat:
Mchainlib/cli/arg.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chainlib/cli/arg.py b/chainlib/cli/arg.py @@ -110,7 +110,7 @@ class Arg(BaseArg): self.add('i', 'chain_spec', help='Chain specification string') self.set_long('i', 'chain-spec') - self.add('u', 'unsafe', help='Do not verify address checksums') + self.add('u', 'unsafe', typ=bool, help='Do not verify address checksums') self.set_long('u', 'unsafe') self.add_long('seq', 'seq', typ=bool, help='Use sequential rpc ids')