Skip to content

Commit 414dc65

Browse files
committed
fix avm build and update vks
1 parent c5973d6 commit 414dc65

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

barretenberg/cpp/scripts/test_civc_standalone_vks_havent_changed.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd ..
1313
# - Generate a hash for versioning: sha256sum bb-civc-inputs.tar.gz
1414
# - Upload the compressed results: aws s3 cp bb-civc-inputs.tar.gz s3://aztec-ci-artifacts/protocol/bb-civc-inputs-[hash(0:8)].tar.gz
1515
# Note: In case of the "Test suite failed to run ... Unexpected token 'with' " error, need to run: docker pull aztecprotocol/build:3.0
16-
pinned_short_hash="1176062e"
16+
pinned_short_hash="58c67fe7"
1717
pinned_civc_inputs_url="https://aztec-ci-artifacts.s3.us-east-2.amazonaws.com/protocol/bb-civc-inputs-${pinned_short_hash}.tar.gz"
1818

1919
function compress_and_upload {

barretenberg/cpp/src/barretenberg/sumcheck/sumcheck_round.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,7 @@ template <typename Flavor> class SumcheckProverRound {
462462
// these are unmasked; we will mask in sumcheck.
463463
const auto round_univariate =
464464
batch_over_relations<SumcheckRoundUnivariate>(univariate_accumulators, alphas, gate_separators);
465+
// define eval at 0 from target sum/or previous round univariate
465466

466467
return round_univariate;
467468
};

barretenberg/cpp/src/barretenberg/vm2/constraining/recursion/recursive_verifier.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ TEST_F(AvmRecursiveTests, GoblinRecursionWithoutPIValidation)
233233

234234
// Construct and verify an Ultra Rollup proof of the AVM recursive verifier circuit. This proof carries an IPA claim
235235
// from ECCVM recursive verification in its public inputs that will be verified as part of the UltraRollupVerifier.
236-
auto outer_proving_key = std::make_shared<DeciderProvingKey_<UltraRollupFlavor>>(outer_circuit);
236+
auto outer_proving_key = std::make_shared<ProverInstance_<UltraRollupFlavor>>(outer_circuit);
237237

238238
// Scoped to free memory of UltraRollupProver.
239239
auto outer_proof = [&]() {

0 commit comments

Comments
 (0)