We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1dbbd commit ffa2cf5Copy full SHA for ffa2cf5
crates/circuits/sha256-air/src/trace.rs
@@ -107,8 +107,7 @@ impl<C: ShaConfig + ShaPrecomputedValues<C::Word>> ShaAir<C> {
107
*cols.flags.local_block_idx = F::from_canonical_u32(local_block_idx);
108
109
// W_idx = M_idx
110
- // TODO: fix this. should be smtg like `if i < C::BLOCK_WORDS`
111
- if i < C::ROWS_PER_BLOCK / C::ROUNDS_PER_ROW {
+ if i < C::BLOCK_WORDS / C::ROUNDS_PER_ROW {
112
for j in 0..C::ROUNDS_PER_ROW {
113
cols.message_schedule
114
.w
0 commit comments