From 95379a1a1c659d731b757e37c26baef4107c93e5 Mon Sep 17 00:00:00 2001 From: poma Date: Sat, 18 Jan 2020 23:59:19 +0700 Subject: [PATCH] change default power to 28 --- powersoftau/src/bn256/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powersoftau/src/bn256/mod.rs b/powersoftau/src/bn256/mod.rs index 39445a9..1c67010 100644 --- a/powersoftau/src/bn256/mod.rs +++ b/powersoftau/src/bn256/mod.rs @@ -30,7 +30,7 @@ pub struct Bn256CeremonyParameters { } impl PowersOfTauParameters for Bn256CeremonyParameters { - const REQUIRED_POWER: usize = 26; // generate to have roughly 64 million constraints + const REQUIRED_POWER: usize = 28; // generate to have roughly 64 million constraints // This ceremony is based on the BN256 elliptic curve construction. const G1_UNCOMPRESSED_BYTE_SIZE: usize = 64;