Skip to content

Commit

Permalink
fix indexing in error message (#490)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashtare authored and 0xaatif committed Aug 14, 2024
1 parent 4689cd8 commit 0f379c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trace_decoder/src/decoding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ pub fn into_txn_proof_gen_ir(
&mut extra_data,
&other_data,
)
.context(format!("at transaction index {}", txn_idx))
.context(format!("at transaction index {}", current_idx))
})
.collect::<anyhow::Result<Vec<_>>>()
.context(format!(
Expand Down

0 comments on commit 0f379c9

Please sign in to comment.