Skip to content

Commit

Permalink
Fix broken cargo test (#148)
Browse files Browse the repository at this point in the history
* Fix broken cargo test

* Just use LurkField and not PrimeField
  • Loading branch information
weissjeffm committed Oct 9, 2022
1 parent 493e667 commit b57acd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benches/eval.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
use blstrs::Scalar as Fr;
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use ff::PrimeField;
use lurk::{
eval::{empty_sym_env, Evaluator},
field::LurkField,
store::{Ptr, Store},
};

fn go_base<F: PrimeField>(store: &mut Store<F>, a: u64, b: u64) -> Ptr<F> {
fn go_base<F: LurkField>(store: &mut Store<F>, a: u64, b: u64) -> Ptr<F> {
let program = format!(
r#"
(let ((foo (lambda (a b)
Expand Down

0 comments on commit b57acd5

Please sign in to comment.