Truncate file from p=1

This commit is contained in:
Jordi Baylina 2020-09-14 13:11:51 +02:00
parent c3aa20d291
commit def098be63
No known key found for this signature in database
GPG Key ID: 7480C80C1BE43112
5 changed files with 6 additions and 6 deletions

@ -3844,7 +3844,7 @@ async function truncate(ptauFilename, template, logger) {
const sG1 = curve.G1.F.n8*2;
const sG2 = curve.G2.F.n8*2;
for (let p=0; p<power; p++) {
for (let p=1; p<power; p++) {
await generateTruncate(p);
}

@ -3634,7 +3634,7 @@ async function truncate(ptauFilename, template, logger) {
const sG1 = curve.G1.F.n8*2;
const sG2 = curve.G2.F.n8*2;
for (let p=0; p<power; p++) {
for (let p=1; p<power; p++) {
await generateTruncate(p);
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -10,7 +10,7 @@ export default async function truncate(ptauFilename, template, logger) {
const sG1 = curve.G1.F.n8*2;
const sG2 = curve.G2.F.n8*2;
for (let p=0; p<power; p++) {
for (let p=1; p<power; p++) {
await generateTruncate(p);
}