Skip to content

Commit

Permalink
omit signed batchinfo verify
Browse files Browse the repository at this point in the history
  • Loading branch information
danielxiangzl committed Oct 11, 2024
1 parent 2d1a173 commit ccaf199
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion consensus/consensus-types/src/proof_of_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,10 @@ impl SignedBatchInfo {
);
}

Ok(validator.verify(self.signer, &self.info, &self.signature)?)
// daniel hack
Ok(())

// Ok(validator.verify(self.signer, &self.info, &self.signature)?)
}

pub fn signature(&self) -> &bls12381::Signature {
Expand Down
2 changes: 1 addition & 1 deletion testsuite/forge-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ fn background_traffic_for_sweep_with_latency(criteria: &[(f32, f32)]) -> Option<
}

fn realistic_env_load_sweep_test() -> ForgeConfig {
realistic_env_sweep_wrap(100, 20, LoadVsPerfBenchmark {
realistic_env_sweep_wrap(100, 10, LoadVsPerfBenchmark {
test: Box::new(PerformanceBenchmark),
workloads: Workloads::TPS(vec![10000]),
criteria: [
Expand Down

0 comments on commit ccaf199

Please sign in to comment.