mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
coldcard: show multisig address: more intuitive error msg
cause of error is probably almost always what msg says
This commit is contained in:
parent
9c83bc1008
commit
1236b07abf
1 changed files with 5 additions and 2 deletions
|
@ -477,8 +477,11 @@ class Coldcard_KeyStore(Hardware_KeyStore):
|
||||||
self.handler.finished()
|
self.handler.finished()
|
||||||
except CCProtoError as exc:
|
except CCProtoError as exc:
|
||||||
self.logger.exception('Error showing address')
|
self.logger.exception('Error showing address')
|
||||||
self.handler.show_error('{}\n\n{}'.format(
|
self.handler.show_error('{}.\n{}\n\n{}'.format(
|
||||||
_('Error showing address') + ':', str(exc)))
|
_('Error showing address'),
|
||||||
|
_('Make sure you have imported the correct wallet description '
|
||||||
|
'file on the device for this multisig wallet.'),
|
||||||
|
str(exc)))
|
||||||
except BaseException as exc:
|
except BaseException as exc:
|
||||||
self.logger.exception('')
|
self.logger.exception('')
|
||||||
self.handler.show_error(exc)
|
self.handler.show_error(exc)
|
||||||
|
|
Loading…
Add table
Reference in a new issue