From eeea4fcb319acd35708d7cc395796708dfd8f9f0 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 28 Nov 2018 17:24:32 +0100 Subject: [PATCH] rename 2fa non-segwit type to "legacy 2fa" and make segwit the default --- electrum/plugins/trustedcoin/trustedcoin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/plugins/trustedcoin/trustedcoin.py b/electrum/plugins/trustedcoin/trustedcoin.py index b3b2d0a99..adf3f413e 100644 --- a/electrum/plugins/trustedcoin/trustedcoin.py +++ b/electrum/plugins/trustedcoin/trustedcoin.py @@ -482,8 +482,8 @@ class TrustedCoinPlugin(BasePlugin): def choose_seed_type(self, wizard): choices = [ - ('create_2fa_seed', _('Standard 2FA')), ('create_2fa_segwit_seed', _('Segwit 2FA')), + ('create_2fa_seed', _('Legacy 2FA')), ] wizard.choose_seed_type(choices=choices)