mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-26 05:26:45 +00:00
Update CaravanMultisig.java
Reversing changes to original PR.
This commit is contained in:
parent
c42a7fd388
commit
debeb82757
1 changed files with 4 additions and 0 deletions
|
@ -55,6 +55,10 @@ public class CaravanMultisig implements WalletImport, WalletExport {
|
||||||
for(ExtPublicKey extKey : cf.extendedPublicKeys) {
|
for(ExtPublicKey extKey : cf.extendedPublicKeys) {
|
||||||
Keystore keystore = new Keystore(extKey.name.length() > Keystore.MAX_LABEL_LENGTH ? extKey.name.substring(0, Keystore.MAX_LABEL_LENGTH) : extKey.name);
|
Keystore keystore = new Keystore(extKey.name.length() > Keystore.MAX_LABEL_LENGTH ? extKey.name.substring(0, Keystore.MAX_LABEL_LENGTH) : extKey.name);
|
||||||
|
|
||||||
|
if("Unknown".equals(extKey.bip32Path)) {
|
||||||
|
extKey.bip32Path = "m/0/0/0/0";
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
keystore.setKeyDerivation(new KeyDerivation(extKey.xfp, extKey.bip32Path));
|
keystore.setKeyDerivation(new KeyDerivation(extKey.xfp, extKey.bip32Path));
|
||||||
} catch(NumberFormatException e) {
|
} catch(NumberFormatException e) {
|
||||||
|
|
Loading…
Reference in a new issue