You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser=HWIArgumentParser(description='Hardware Wallet Interface, version {}.\nAccess and send commands to a hardware wallet device. Responses are in JSON format.'.format(__version__))
137
137
parser.add_argument('--device-path', '-d', help='Specify the device path of the device to connect to')
138
138
parser.add_argument('--device-type', '-t', help='Specify the type of device that will be connected. If `--device-path` not given, the first device of this type enumerated is used.')
139
-
parser.add_argument('--password', '-p', help='Device password if it has one (e.g. DigitalBitbox)', default='')
139
+
parser.add_argument('--password', '-p', help='Device password if it has one (e.g. DigitalBitbox)')
140
140
parser.add_argument('--stdinpass', help='Enter the device password on the command line', action='store_true')
141
141
parser.add_argument('--chain', help='Select chain to work with', type=Chain.argparse, choices=list(Chain), default=Chain.MAIN) # type: ignore
d_data['needs_passphrase_sent'] =client.client.features.passphrase_protection# always need the passphrase sent for Keepkey if it has passphrase protection enabled
203
203
ifd_data['needs_pin_sent']:
204
204
raiseDeviceNotReadyError('Keepkey is locked. Unlock by using \'promptpin\' and then \'sendpin\'.')
0 commit comments