Remove seed option for segwit address

This commit is contained in:
Chris Sulmone 2018-01-22 23:22:23 -06:00
parent a35fcc3854
commit 140f7e183b
1 changed files with 1 additions and 4 deletions

View File

@ -399,13 +399,10 @@ class BaseWizard(object):
title = _('Choose Seed type')
message = ' '.join([
_("The type of addresses used by your wallet will depend on your seed."),
_("Segwit wallets use bech32 addresses, defined in BIP173."),
_("Please note that websites and other wallets may not support these addresses yet."),
_("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_segwit_seed', _('Segwit')),
]
self.choice_dialog(title=title, message=message, choices=choices, run_next=self.run)