From 774a9ad263df60789d94cdb618dad3c27b0b4a62 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 1 Apr 2021 14:42:52 +0200 Subject: [PATCH] fix #7164 --- electrum/plugins/trustedcoin/trustedcoin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electrum/plugins/trustedcoin/trustedcoin.py b/electrum/plugins/trustedcoin/trustedcoin.py index 389a4a6bd..66002c852 100644 --- a/electrum/plugins/trustedcoin/trustedcoin.py +++ b/electrum/plugins/trustedcoin/trustedcoin.py @@ -551,6 +551,8 @@ class TrustedCoinPlugin(BasePlugin): def create_seed(self, wizard, seed_type): seed = self.make_seed(seed_type) f = lambda x: wizard.request_passphrase(seed, x) + wizard.opt_bip39 = False + wizard.opt_ext = True wizard.show_seed_dialog(run_next=f, seed_text=seed) @classmethod