Skip to content

Commit

Permalink
fix: temp remove pow_var
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalakkal committed Aug 11, 2023
1 parent 8643efb commit 69f648e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions snark-verifier-sdk/examples/vkey_as_witness.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
use std::fs::File;
use std::io::{BufReader, BufWriter};
use std::path::Path;

use application::ComputeFlag;
use halo2_base::gates::builder::{CircuitBuilderStage, BASE_CONFIG_PARAMS};
use halo2_base::halo2_proofs;
Expand Down
2 changes: 1 addition & 1 deletion snark-verifier/src/loader/halo2/shim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ mod halo2_lib {
exponent: &Self::AssignedInteger,
max_bits: usize,
) -> Self::AssignedInteger {
GateInstructions::pow_var(self, ctx.main(0), *base, *exponent, max_bits)
unimplemented!()
}
}

Expand Down

0 comments on commit 69f648e

Please sign in to comment.