Fix aggregate sigs.

This commit is contained in:
Paul Miller 2020-12-03 20:17:28 +04:00 committed by GitHub
parent 1ba1247978
commit fcdb61b193
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -113,8 +113,8 @@ import {aggCount, runsNoble} from "./params";
input: await Promise.all(range(aggCount).map(() => noble.PointG2.hashToCurve(generateRandomSecretKey()))),
};
},
testRunner: async (pks) => {
noble.aggregatePublicKeys(pks);
testRunner: async (sigs) => {
noble.aggregateSignatures(sigs);
},
runs: runsNoble,
});