Allow constructing HDNode from an ECPubKey.
This commit is contained in:
parent
e0b1aa843e
commit
8a38a24b9f
1 changed files with 2 additions and 0 deletions
|
@ -43,6 +43,8 @@ function HDNode(K, chainCode, network) {
|
||||||
if (K instanceof BigInteger) {
|
if (K instanceof BigInteger) {
|
||||||
this.privKey = new ECKey(K, true)
|
this.privKey = new ECKey(K, true)
|
||||||
this.pubKey = this.privKey.pub
|
this.pubKey = this.privKey.pub
|
||||||
|
} else if (K instanceof ECPubKey) {
|
||||||
|
this.pubKey = K
|
||||||
} else {
|
} else {
|
||||||
this.pubKey = new ECPubKey(K, true)
|
this.pubKey = new ECPubKey(K, true)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue