Correct type for 'unsafe' flag

This commit is contained in:
lash 2022-05-12 08:19:54 +00:00
parent 91d9654052
commit 65830cebed
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746

View File

@ -110,7 +110,7 @@ class Arg(BaseArg):
self.add('i', 'chain_spec', help='Chain specification string') self.add('i', 'chain_spec', help='Chain specification string')
self.set_long('i', 'chain-spec') 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.set_long('u', 'unsafe')
self.add_long('seq', 'seq', typ=bool, help='Use sequential rpc ids') self.add_long('seq', 'seq', typ=bool, help='Use sequential rpc ids')