Skip to content

Commit

Permalink
fix call ops static costs
Browse files Browse the repository at this point in the history
  • Loading branch information
facuMH committed Sep 13, 2024
1 parent 5c85e26 commit bbbc07d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions go/interpreter/lfvm/gas.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ func getBerlinGasPriceInternal(op OpCode) tosca.Gas {
case BALANCE:
gp = 100
case CALL:
gp = 100
gp = 0
case CALLCODE:
gp = 100
gp = 0
case STATICCALL:
gp = 100
gp = 0
case DELEGATECALL:
gp = 100
gp = 0
case SELFDESTRUCT:
gp = 5000
}
Expand Down

0 comments on commit bbbc07d

Please sign in to comment.