Skip to content

Commit

Permalink
fix: prove + verify transcript defaults should match (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-camuto authored Feb 25, 2023
1 parent 0a5d1aa commit 1c5aa75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:

prove-and-verify-aggr-tests:

runs-on: ubuntu-latest-16-cores
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -142,11 +142,11 @@ jobs:
components: rustfmt, clippy

- name: KZG prove and verify aggr tests
run: cargo test --release --verbose tests_aggr::kzg_aggr_prove_and_verify_ -- --test-threads 1
run: cargo test --release --verbose tests_aggr::kzg_aggr_prove_and_verify_ -- --test-threads 2

prove-and-verify-evm-aggr-tests:

runs-on: ubuntu-latest-16-cores
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -159,7 +159,7 @@ jobs:
- name: Install solc
run: (hash svm 2>/dev/null || cargo install svm-rs) && svm install 0.8.17 && solc --version
- name: KZG prove and verify aggr tests
run: cargo test --release --verbose tests_evm::kzg_evm_aggr_prove_and_verify_ -- --test-threads 1 --include-ignored
run: cargo test --release --verbose tests_evm::kzg_evm_aggr_prove_and_verify_ -- --test-threads 2 --include-ignored

examples:

Expand Down
2 changes: 1 addition & 1 deletion src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ pub enum Commands {
long,
require_equals = true,
num_args = 0..=1,
default_value_t = TranscriptType::EVM,
default_value_t = TranscriptType::Blake,
value_enum
)]
transcript: TranscriptType,
Expand Down

0 comments on commit 1c5aa75

Please sign in to comment.