mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-04 11:06:44 +00:00
fix npe for new wallets
This commit is contained in:
parent
eab42c0f05
commit
2eedd2290c
1 changed files with 5 additions and 3 deletions
|
@ -143,11 +143,13 @@ public class Wallet extends Persistable {
|
||||||
int index = -1;
|
int index = -1;
|
||||||
|
|
||||||
for(Keystore keystore : getKeystores()) {
|
for(Keystore keystore : getKeystores()) {
|
||||||
|
if(keystore.getKeyDerivation() != null) {
|
||||||
int keystoreAccount = getScriptType().getAccount(keystore.getKeyDerivation().getDerivationPath());
|
int keystoreAccount = getScriptType().getAccount(keystore.getKeyDerivation().getDerivationPath());
|
||||||
if(keystoreAccount != -1 && (index == -1 || keystoreAccount == index)) {
|
if(keystoreAccount != -1 && (index == -1 || keystoreAccount == index)) {
|
||||||
index = keystoreAccount;
|
index = keystoreAccount;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue