Skip to content

Commit

Permalink
Addressing review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
fmacleal committed Nov 14, 2024
1 parent 79b166a commit d64cd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rskj-core/src/main/java/org/ethereum/vm/VM.java
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,7 @@ protected void doTLOAD(){
protected void doTSTORE(){
//TODO: Gas cost calculation will be done here and also shared contexts verifications for
// different types of calls
if (program.isStaticCall() && program.getActivations().isActive(RSKIP91)) {
if (program.isStaticCall()) {
throw Program.ExceptionHelper.modificationException(program);
}

Expand Down

0 comments on commit d64cd9d

Please sign in to comment.