mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 18:26:43 +00:00
remove key derivation method
This commit is contained in:
parent
d489aa6af9
commit
fefebbabb5
1 changed files with 0 additions and 11 deletions
|
@ -740,17 +740,6 @@ public class Wallet extends Persistable implements Comparable<Wallet> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void derivePublicKeys() {
|
|
||||||
for(KeyPurpose keyPurpose : KeyPurpose.DEFAULT_PURPOSES) {
|
|
||||||
WalletNode purposeNode = getNode(keyPurpose);
|
|
||||||
for(WalletNode addressNode : purposeNode.getChildren()) {
|
|
||||||
for(Keystore keystore : getKeystores()) {
|
|
||||||
keystore.getPubKey(addressNode);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isWalletTxo(TransactionInput txInput) {
|
public boolean isWalletTxo(TransactionInput txInput) {
|
||||||
return getWalletTxos().keySet().stream().anyMatch(ref -> ref.getHash().equals(txInput.getOutpoint().getHash()) && ref.getIndex() == txInput.getOutpoint().getIndex());
|
return getWalletTxos().keySet().stream().anyMatch(ref -> ref.getHash().equals(txInput.getOutpoint().getHash()) && ref.getIndex() == txInput.getOutpoint().getIndex());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue