Skip to content

Commit

Permalink
Swap order of hi, lo in lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
Mason Liang committed Nov 6, 2023
1 parent ec98162 commit b4f152b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/gadgets/mpt_update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,17 @@ impl<F: FieldExt> MptUpdateLookup<F> for MptUpdateConfig {
[
is_start().into(),
address,
storage_key_hi,
storage_key_lo,
storage_key_hi,
proof_type,
new_root_hi,
new_root_lo,
old_root_hi,
new_root_hi,
old_root_lo,
new_value_hi,
old_root_hi,
new_value_lo,
old_value_hi,
new_value_hi,
old_value_lo,
old_value_hi,
]
}
}
Expand Down

0 comments on commit b4f152b

Please sign in to comment.