From 17dc864081eeb11a7d3da1cc224d00392d5d97f7 Mon Sep 17 00:00:00 2001 From: kodxana Date: Fri, 15 Mar 2019 22:30:25 +0100 Subject: [PATCH] Fixed multi-sign wallet --- electrum/base_wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/base_wizard.py b/electrum/base_wizard.py index 8edef001c..9520d5081 100644 --- a/electrum/base_wizard.py +++ b/electrum/base_wizard.py @@ -342,7 +342,7 @@ class BaseWizard(object): # For segwit, a custom path is used, as there is no standard at all. default_choice_idx = 0 choices = [ - ('standard', 'legacy multisig (p2sh)', "m/45'/0"), + ('standard', 'legacy multisig (p2sh)', "m/44'/140'/0'"), ('p2wsh-p2sh', 'p2sh-segwit multisig (p2wsh-p2sh)', purpose48_derivation(0, xtype='p2wsh-p2sh')), ('p2wsh', 'native segwit multisig (p2wsh)', purpose48_derivation(0, xtype='p2wsh')), ]