mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
truncate keystore labels on caravan import
This commit is contained in:
parent
81eda96690
commit
1224abcd1d
1 changed files with 2 additions and 1 deletions
|
@ -53,7 +53,7 @@ public class CaravanMultisig implements WalletImport, WalletExport {
|
||||||
ScriptType scriptType = ScriptType.valueOf(cf.addressType.replace('-', '_'));
|
ScriptType scriptType = ScriptType.valueOf(cf.addressType.replace('-', '_'));
|
||||||
|
|
||||||
for(ExtPublicKey extKey : cf.extendedPublicKeys) {
|
for(ExtPublicKey extKey : cf.extendedPublicKeys) {
|
||||||
Keystore keystore = new Keystore(extKey.name);
|
Keystore keystore = new Keystore(extKey.name.length() > Keystore.MAX_LABEL_LENGTH ? extKey.name.substring(0, Keystore.MAX_LABEL_LENGTH) : extKey.name);
|
||||||
try {
|
try {
|
||||||
keystore.setKeyDerivation(new KeyDerivation(extKey.xfp, extKey.bip32Path));
|
keystore.setKeyDerivation(new KeyDerivation(extKey.xfp, extKey.bip32Path));
|
||||||
} catch(NumberFormatException e) {
|
} catch(NumberFormatException e) {
|
||||||
|
@ -70,6 +70,7 @@ public class CaravanMultisig implements WalletImport, WalletExport {
|
||||||
keystore.setWalletModel(walletModel);
|
keystore.setWalletModel(walletModel);
|
||||||
keystore.setSource(KeystoreSource.HW_USB);
|
keystore.setSource(KeystoreSource.HW_USB);
|
||||||
}
|
}
|
||||||
|
wallet.makeLabelsUnique(keystore);
|
||||||
wallet.getKeystores().add(keystore);
|
wallet.getKeystores().add(keystore);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue