From 1236b07abfc74dc53e7ccb1451007ed7de7a218b Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 18 Sep 2019 17:41:26 +0200 Subject: [PATCH] coldcard: show multisig address: more intuitive error msg cause of error is probably almost always what msg says --- electrum/plugins/coldcard/coldcard.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/electrum/plugins/coldcard/coldcard.py b/electrum/plugins/coldcard/coldcard.py index 8f08a4d14..0e3f631c3 100644 --- a/electrum/plugins/coldcard/coldcard.py +++ b/electrum/plugins/coldcard/coldcard.py @@ -477,8 +477,11 @@ class Coldcard_KeyStore(Hardware_KeyStore): self.handler.finished() except CCProtoError as exc: self.logger.exception('Error showing address') - self.handler.show_error('{}\n\n{}'.format( - _('Error showing address') + ':', str(exc))) + self.handler.show_error('{}.\n{}\n\n{}'.format( + _('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: self.logger.exception('') self.handler.show_error(exc)