Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(gas): lookup row 1 #344

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gas/constraints.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
;; though: it still asserts "smallness" so that it
;; should filter out MXPX induced out of gas exceptions.
(defconstraint asserting-the-gas-cost-is-nonnegative (:guard FIRST)
(call-to-LT 1 ;; row shift parameter
(call-to-LEQ 1 ;; row shift parameter
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😁 Was that the root cause of all the tests blowing up ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They are still running, but it seems so.

0 ;; arg 1 low
GAS_COST ;; arg 2 low
1)) ;; res is TRUE!
Expand Down
Loading