Skip to content

Commit

Permalink
remove func not use
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvana369 committed Mar 21, 2023
1 parent e2d8a76 commit 681e5d9
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/ed25519.mo
Original file line number Diff line number Diff line change
Expand Up @@ -207,16 +207,7 @@ module C_ExtendedPoint {
public func maplTExPoint2lPoint(lep : [T.ExtendedPoint]) : [ExtendedPoint] {
Array.map<T.ExtendedPoint, ExtendedPoint>(lep, func a = ExtendedPoint(a.x, a.y, a.z, a.t));
};

public func mapPoint2TRecord(p : C_Point.Point, lep : [ExtendedPoint]) : T.Record {
let k = p.get();
let v = maplPoint2lTExPoint(lep);
return {
key = k;
value = v;
};
};


public class ExtendedPoint(
xP : Int,
yP : Int,
Expand Down

0 comments on commit 681e5d9

Please sign in to comment.