Skip to content

Commit

Permalink
assert_nn_le std spec fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Julek committed Mar 29, 2023
1 parent db57ebe commit e45ffbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Horus/SW/Std.hs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ stdSpecsList =
,
( "starkware.cairo.common.math.assert_nn_le"
, emptyFuncSpec
{ fs_post = 0 .<= memory (fp - 4) .&& memory (fp - 4) .<= memory (fp - 3)
{ fs_post = 0 .<= memory (fp - 4) .&& memory (fp - 4) .<= memory (fp - 3) .&& memory (fp - 3) .<= rcBound
}
)
,
Expand Down

0 comments on commit e45ffbb

Please sign in to comment.