From bbbc07d30db7164a64f6bc4a0899b69f7a84145e Mon Sep 17 00:00:00 2001 From: facuMH Date: Fri, 13 Sep 2024 15:45:39 +0200 Subject: [PATCH] fix call ops static costs --- go/interpreter/lfvm/gas.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/go/interpreter/lfvm/gas.go b/go/interpreter/lfvm/gas.go index 8f7bee8d8..5658aa625 100644 --- a/go/interpreter/lfvm/gas.go +++ b/go/interpreter/lfvm/gas.go @@ -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 }