ecpubkey: removed unnecessary alias

This commit is contained in:
Daniel Cousens 2014-06-10 18:36:00 +10:00
parent 4ce9015f3b
commit e21939bad5

View file

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