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

This commit is contained in:
ThomasV 2018-11-07 15:03:54 +01:00
parent 7d114ff32d
commit 3d4773b161

View file

@ -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)