We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was solving problem 9 of the evm puzzle. (The puzzle is on GitHub below.) https://github.com/fvictorio/evm-puzzles
I did the same in the evmcodes playground but failed. I looked into why, and found that there was an error when converting to bytecode.
hex 0x0e is equivalent to decimal 14. Why do I get this error?
The text was updated successfully, but these errors were encountered:
hello, guys, I think you write run code, the correct code is bellow:
CALLDATASIZE PUSH1 0x03 LT PUSH1 0x09 JUMPI REVERT REVERT JUMPDEST CALLVALUE CALLDATASIZE MUL PUSH1 0x08 EQ PUSH1 0x14 JUMPI REVERT JUMPDEST STOP
In the 14th line, the parameter of PUSH1 is not 14. it should be 0x14.
PUSH1
0x14
Sorry, something went wrong.
No branches or pull requests
I was solving problem 9 of the evm puzzle.
(The puzzle is on GitHub below.)
https://github.com/fvictorio/evm-puzzles
I did the same in the evmcodes playground but failed.
I looked into why, and found that there was an error when converting to bytecode.
hex 0x0e is equivalent to decimal 14.
Why do I get this error?
The text was updated successfully, but these errors were encountered: