changing multiply back to add. From testing we always want to add
the keys.
This commit is contained in:
parent
4be1a70588
commit
0d92eb8be3
1 changed files with 1 additions and 1 deletions
|
@ -5044,7 +5044,7 @@
|
|||
|
||||
var n=EllipticCurve.getSECCurveByName("secp256k1").getN();
|
||||
|
||||
var newPrivateKey=new Bitcoin.ECKey(privateKey.multiply(privatePoolKey).mod(n));
|
||||
var newPrivateKey=new Bitcoin.ECKey(privateKey.add(privatePoolKey).mod(n));
|
||||
|
||||
bitcoinAddress = newPrivateKey.getBitcoinAddress();
|
||||
privateKeyWif = newPrivateKey.getBitcoinWalletImportFormat();
|
||||
|
|
Loading…
Add table
Reference in a new issue