Browse Source

ECKey: remove extraneous toString

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
27f58b539e
  1. 2
      test/eckey.js

2
test/eckey.js

@ -26,7 +26,7 @@ describe('ECKey', function() {
var d = new BigInteger(f.d)
var privKey = new ECKey(d)
assert.equal(privKey.pub.Q.toString(), f.Q.toString())
assert.equal(privKey.pub.Q.toString(), f.Q)
})
})

Loading…
Cancel
Save