Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: remove dead client_code_hash_resolve_f #514

Merged
merged 4 commits into from
Aug 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: feature-gated code >:(
  • Loading branch information
0xaatif committed Aug 19, 2024
commit 0c67c917de5c22cebe3b18ace28cf3015f48adbd
3 changes: 1 addition & 2 deletions zero_bin/prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ impl BlockProverInput {
let block_number = self.get_block_number();
info!("Testing witness generation for block {block_number}.");

let txs =
trace_decoder::entrypoint(self.block_trace, self.other_data, |_| unimplemented!())?;
let txs = trace_decoder::entrypoint(self.block_trace, self.other_data)?;

IndexedStream::from(txs)
.map(&TxProof {
Expand Down
Loading