mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-04-07 11:28:30 +02:00
default to trezor t on import
This commit is contained in:
parent
be5a48ce71
commit
d3881f76b9
@ -138,6 +138,9 @@ public class Electrum implements KeystoreFileImport, WalletImport, WalletExport
|
||||
if(keystore.getWalletModel() == null) {
|
||||
throw new ImportException("Wallet has keystore of unknown hardware wallet type \"" + ek.hw_type + "\".");
|
||||
}
|
||||
if(keystore.getWalletModel().equals(WalletModel.TREZOR_1)) {
|
||||
keystore.setWalletModel(WalletModel.TREZOR_T);
|
||||
}
|
||||
} else if("bip32".equals(ek.type)) {
|
||||
if(ek.xprv != null && ek.seed == null) {
|
||||
throw new ImportException("Electrum does not support exporting BIP39 derived seeds, as it does not store the mnemonic words. Only seeds created with its native Electrum Seed Version System are exportable. " +
|
||||
|
Loading…
x
Reference in New Issue
Block a user