changing multiply back to add. From testing we always want to add

the keys.
This commit is contained in:
Robin Owens 2012-10-07 10:17:40 +01:00
parent 4be1a70588
commit 0d92eb8be3

View file

@ -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();