Skip to content

Commit

Permalink
Merge branch 'fix/lib-conflict' of https://github.com/gabrielbazan7/b…
Browse files Browse the repository at this point in the history
  • Loading branch information
kajoseph committed Jul 8, 2021
2 parents 1567a8d + ca0bb2e commit ae6a87e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/bitcore-lib-ltc/lib/crypto/point.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Point.getN = function getN() {
return new BN(ec.curve.n.toArray());
};

if (!Point.prototype._getX)
Point.prototype._getX = Point.prototype.getX;

/**
Expand All @@ -85,6 +86,7 @@ Point.prototype.getX = function getX() {
return new BN(this._getX().toArray());
};

if (!Point.prototype._getY)
Point.prototype._getY = Point.prototype.getY;

/**
Expand Down

0 comments on commit ae6a87e

Please sign in to comment.