Skip to content

Commit

Permalink
update err msg
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamWuGit committed Jul 31, 2024
1 parent d2abb7f commit 028a273
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions zkevm-circuits/src/copy_circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,7 @@ impl<F: Field> CopyCircuitConfig<F> {
self.mask,
self.front_mask,
self.word_index,
#[cfg(feature = "dual_bytecode")]
self.is_first_bytecode_table,
]
.iter()
Expand Down
1 change: 0 additions & 1 deletion zkevm-circuits/src/copy_circuit/dev.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ impl<F: Field> Circuit<F> for CopyCircuit<F> {
config: Self::Config,
mut layouter: impl Layouter<F>,
) -> Result<(), Error> {
println!("CopyCircuit: synthesize");
let challenge_values = config.1.values(&layouter);

config.0.tx_table.load(
Expand Down
3 changes: 3 additions & 0 deletions zkevm-circuits/src/copy_circuit/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,9 @@ fn copy_circuit_invalid_codecopy() {

assert_error_matches(
test_copy_circuit_from_block(block),
#[cfg(feature = "dual_bytecode")]
vec!["Bytecode lookup", "rw lookup"],
#[cfg(not(feature = "dual_bytecode"))]
vec!["rw lookup", "Bytecode lookup"],
);
}
Expand Down

0 comments on commit 028a273

Please sign in to comment.