electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 52a9fdf6f6e80e5099995b55cf71181de4f3a997
parent 827d928aaa5ae30c028a021dfd6b71870eda9df5
Author: ThomasV <thomasv@electrum.org>
Date:   Wed, 28 Sep 2016 17:03:02 +0200

wizard: fix restore multisig from seed

Diffstat:
Mgui/qt/installwizard.py | 4++--
Mlib/base_wizard.py | 1+
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py @@ -288,8 +288,8 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): def add_cosigner_dialog(self, run_next, index, is_valid): title = _("Add Cosigner") + " %d"%index message = ' '.join([ - _('Please enter the master public key of your cosigner.'), - _('Enter their seed or master private key if you want to be able to sign for them.') + _('Please enter the master public key (xpub) of your cosigner.'), + _('Enter their master private key (xprv) if you want to be able to sign for them.') ]) return self.text_input(title, message, is_valid) diff --git a/lib/base_wizard.py b/lib/base_wizard.py @@ -129,6 +129,7 @@ class BaseWizard(object): message = _('Add a cosigner to your multi-sig wallet') choices = [ ('restore_from_key', _('Enter cosigner key')), + ('restore_from_seed', _('Enter cosigner seed')), ] if not self.is_kivy: choices.append(('choose_hw_device', _('Cosign with hardware device')))