Skip to content

Commit

Permalink
Merge branch 'mkeil/test-blst-6' of github.com:ChainSafe/lodestar int…
Browse files Browse the repository at this point in the history
…o mkeil/test-blst-6
  • Loading branch information
matthewkeil committed Jan 24, 2024
2 parents 5b067e7 + 898ef7e commit 73fea83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/beacon-node/test/perf/bls/bls.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe("BLS ops", function () {
// An aggregate and proof object has 3 signatures.
// We may want to bundle up to 32 sets in a single batch.
// TODO: figure out why it does not work with 256 or more
for (const count of [3, 8, 32, 64, 128, 256]) {
for (const count of [3, 8, 32, 64, 128]) {
itBench({
id: `BLS verifyMultipleAggregateSignatures ${count} - Napi`,
beforeEach: () => linspace(0, count - 1).map((i) => getSet(i)),
Expand Down Expand Up @@ -140,7 +140,7 @@ describe("BLS ops", function () {
}

// Attestations in Mainnet contain 128 max on average
for (const count of [4, 32, 128, 256, 512]) {
for (const count of [4, 32, 128, 254, 512]) {
itBench({
id: `BLS aggregatePubkeys ${count} - Napi`,
beforeEach: () => linspace(0, count - 1).map((i) => getKeypair(i).publicKey),
Expand Down

0 comments on commit 73fea83

Please sign in to comment.