Skip to content

Commit

Permalink
fix: use assigned value in nibble cut
Browse files Browse the repository at this point in the history
  • Loading branch information
petscheit committed May 2, 2024
1 parent 76d11f9 commit 33fb040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rlp_little.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func assert_subset_in_key_be{range_check_ptr, bitwise_ptr: BitwiseBuiltin*}(
assert bitwise_ptr_f = bitwise_ptr;
} else {
let (_, key_susbet_be_low) = bitwise_divmod(
key_subset_be.low, pow2_array[8 * n_bytes - 4]
key_subset_be_tmp.low, pow2_array[8 * n_bytes - 4]
);
assert key_subset_be.low = key_susbet_be_low;
assert key_subset_be.high = 0;
Expand Down

0 comments on commit 33fb040

Please sign in to comment.