twizard: make segwit/bech32 the default choice during wallet creation - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 3d4773b1618cb8364b5a9a36018b305552258ad7 DIR parent 7d114ff32d18f87240c63c2edb866e62873bdb75 HTML 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: M electrum/base_wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/base_wizard.py b/electrum/base_wizard.py t@@ -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)