Fix aggregate sigs.
This commit is contained in:
parent
1ba1247978
commit
fcdb61b193
|
@ -113,8 +113,8 @@ import {aggCount, runsNoble} from "./params";
|
||||||
input: await Promise.all(range(aggCount).map(() => noble.PointG2.hashToCurve(generateRandomSecretKey()))),
|
input: await Promise.all(range(aggCount).map(() => noble.PointG2.hashToCurve(generateRandomSecretKey()))),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
testRunner: async (pks) => {
|
testRunner: async (sigs) => {
|
||||||
noble.aggregatePublicKeys(pks);
|
noble.aggregateSignatures(sigs);
|
||||||
},
|
},
|
||||||
runs: runsNoble,
|
runs: runsNoble,
|
||||||
});
|
});
|
||||||
|
|
Reference in New Issue