diff --git a/cw_bitcoin/lib/electrum_derivations.dart b/cw_bitcoin/lib/electrum_derivations.dart index e2450fc5f..631805c54 100644 --- a/cw_bitcoin/lib/electrum_derivations.dart +++ b/cw_bitcoin/lib/electrum_derivations.dart @@ -46,12 +46,6 @@ Map> electrum_derivations = { description: "Non-standard native segwit", scriptType: "p2wpkh", ), - DerivationInfo( - derivationType: DerivationType.bip39, - derivationPath: "m/44'/0'/0'", - description: "Copay native segwit", - scriptType: "p2wpkh", - ), DerivationInfo( derivationType: DerivationType.bip39, derivationPath: "m/44'/0'/0'", @@ -64,12 +58,6 @@ Map> electrum_derivations = { description: "Samourai Deposit", scriptType: "p2wpkh", ), - DerivationInfo( - derivationType: DerivationType.bip39, - derivationPath: "m/84'/0'/0'", - description: "Samourai Deposit", - scriptType: "p2wpkh", - ), DerivationInfo( derivationType: DerivationType.bip39, derivationPath: "m/84'/0'/2147483644'", diff --git a/lib/src/screens/restore/wallet_restore_page.dart b/lib/src/screens/restore/wallet_restore_page.dart index 7eb2978cf..5345b5982 100644 --- a/lib/src/screens/restore/wallet_restore_page.dart +++ b/lib/src/screens/restore/wallet_restore_page.dart @@ -393,7 +393,7 @@ class WalletRestorePage extends BasePage { this.derivationInfo = dInfo; if (this.derivationInfo == null) { - walletRestoreViewModel.state = InitialExecutionState(); + this.derivationInfo = walletRestoreViewModel.getDefaultDerivation(); return; }