Skip to content

Commit

Permalink
fix next_tx
Browse files Browse the repository at this point in the history
  • Loading branch information
kunxian-xia committed May 29, 2024
1 parent 0bed35c commit d6953fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zkevm-circuits/src/tx_circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4323,7 +4323,7 @@ impl<F: Field> TxCircuit<F> {
.txs
.iter()
.skip(i + 1)
.find(|tx| !tx.call_data.is_empty());
.find(|tx| !tx.call_data.is_empty() || (tx.access_list.as_ref().map_or(false, |al| !al.0.is_empty())));
config.assign_calldata_rows(
&mut region,
&mut offset,
Expand Down

0 comments on commit d6953fd

Please sign in to comment.