-
Notifications
You must be signed in to change notification settings - Fork 50
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
Value exceeds 64 bits #190
Labels
Comments
This is also an endianess issue. |
Also there should be test cases for using > 64 bit values. |
Related: ewasm/evm2wasm#219 |
The other problem here is that
|
Test case creation is tracked here: ewasm/tests#42 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I wrote a new test case in order to validate that we get an OOG exception when there is a call sending a value and the value is higher than the current sender Balance. Instead the result is the following:
hera/src/eei.cpp
Line 875 in 1a219f0
Here it is comparint the balance and value, both are u128 and it is being validated by a function that validates 64 bit numbers.
The text was updated successfully, but these errors were encountered: