Skip to content

Commit 8b7305a

Browse files
committed
chore: address warnings and increase max proofs per aggregation to 512
1 parent 8382808 commit 8b7305a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

aggregation_mode/src/aggregators/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use sp1_aggregator::{
1313
};
1414
use tracing::info;
1515

16-
const MAX_PROOFS_PER_AGGREGATION: usize = 4;
16+
const MAX_PROOFS_PER_AGGREGATION: usize = 512;
1717

1818
#[derive(Clone, Debug)]
1919
pub enum ZKVMEngine {

aggregation_mode/src/aggregators/sp1_aggregator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use std::sync::LazyLock;
33
use alloy::primitives::Keccak256;
44
use sp1_aggregation_program::SP1VkAndPubInputs;
55
use sp1_sdk::{
6-
EnvProver, HashableKey, Prover, ProverClient, SP1ProofWithPublicValues, SP1ProvingKey,
7-
SP1Stdin, SP1VerifyingKey,
6+
EnvProver, HashableKey, Prover, ProverClient, SP1ProofWithPublicValues, SP1Stdin,
7+
SP1VerifyingKey,
88
};
99

1010
const ROOT_PROGRAM_ELF: &[u8] =

0 commit comments

Comments
 (0)