Skip to content

Commit

Permalink
Fix merge conflict in the bench code
Browse files Browse the repository at this point in the history
  • Loading branch information
dmidem committed May 13, 2024
1 parent 019cbc4 commit 8676e26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions benches/circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,7 @@ fn criterion_benchmark(c: &mut Criterion) {
)
.unwrap();
}
<<<<<<< HEAD
let bundle: Bundle<_, i64, OrchardZSA> = builder.build(rng).unwrap();
=======
let bundle: Bundle<_, i64> = builder.build(rng).unwrap().unwrap().0;
>>>>>>> zsa1
let bundle: Bundle<_, i64, OrchardZSA> = builder.build(rng).unwrap().unwrap().0;

let instances: Vec<_> = bundle
.actions()
Expand Down
6 changes: 1 addition & 5 deletions benches/note_decryption.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,7 @@ fn bench_note_decryption(c: &mut Criterion) {
None,
)
.unwrap();
<<<<<<< HEAD
let bundle: Bundle<_, i64, OrchardZSA> = builder.build(rng).unwrap();
=======
let bundle: Bundle<_, i64> = builder.build(rng).unwrap().unwrap().0;
>>>>>>> zsa1
let bundle: Bundle<_, i64, OrchardZSA> = builder.build(rng).unwrap().unwrap().0;
bundle
.create_proof(&pk, rng)
.unwrap()
Expand Down

0 comments on commit 8676e26

Please sign in to comment.