Browse Source

ecpubkey: removed unnecessary alias

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
e21939bad5
  1. 3
      test/ecpubkey.js

3
test/ecpubkey.js

@ -7,7 +7,6 @@ var ECPubKey = require('../src/ecpubkey')
var ecurve = require('ecurve')
var curve = ecurve.getCurveByName('secp256k1')
var ECPoint = ecurve.Point
var fixtures = require('./fixtures/ecpubkey.json')
@ -15,7 +14,7 @@ describe('ECPubKey', function() {
var Q
beforeEach(function() {
Q = ECPoint.fromAffine(
Q = ecurve.Point.fromAffine(
curve,
new BigInteger(fixtures.Q.x),
new BigInteger(fixtures.Q.y)

Loading…
Cancel
Save