-
Notifications
You must be signed in to change notification settings - Fork 33
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
Fixing issues with column sizes #1393
Conversation
This fixes an issue where casting it to (int) left us with a remainder mod some power of 2 instead of the actual accumulatedGasUsedInBlock
…o fill GasExpected correctly after resuming execution in a frame
@@ -77,6 +77,14 @@ public boolean isHalt() { | |||
return this.instructionFamily == InstructionFamily.HALT; | |||
} | |||
|
|||
public boolean isCall() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already have those method somewhere else (based on the opcode, not the opcode family)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. But it makes more sense to have them defined on the instruction family level.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved these methods to the OpCodeData
level.
- removed pushFlag from opcodes.yml - removed jumpFlag from opcodes.yml (which BTW was a misnomer) - make the isXxx() methods of OpCode.java return the same method from OpCodeData.java
No description provided.