electrum

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

commit 3d4773b1618cb8364b5a9a36018b305552258ad7
parent 7d114ff32d18f87240c63c2edb866e62873bdb75
Author: ThomasV <thomasv@electrum.org>
Date:   Wed,  7 Nov 2018 15:03:54 +0100

wizard: make segwit/bech32 the default choice during wallet creation

Diffstat:
Melectrum/base_wizard.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/base_wizard.py b/electrum/base_wizard.py @@ -538,8 +538,8 @@ class BaseWizard(object): _("Thus, you might want to keep using a non-segwit wallet in order to be able to receive bitcoins during the transition period.") ]) choices = [ - ('create_standard_seed', _('Standard')), ('create_segwit_seed', _('Segwit')), + ('create_standard_seed', _('Standard')), ] self.choice_dialog(title=title, message=message, choices=choices, run_next=self.run)