From fb8d3fa4767c4b2ef74023e10e1261f461ea1584 Mon Sep 17 00:00:00 2001 From: smin-k Date: Fri, 5 Apr 2024 17:37:52 +0900 Subject: [PATCH] core/state_transition.go: eip-2 comment --- core/state_transition.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/state_transition.go b/core/state_transition.go index a52e24dc43..1a684b3b3e 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -71,6 +71,7 @@ func (result *ExecutionResult) Revert() []byte { func IntrinsicGas(data []byte, accessList types.AccessList, isContractCreation bool, isHomestead, isEIP2028, isEIP3860 bool) (uint64, error) { // Set the starting gas for the raw transaction var gas uint64 + //eip2: 계약 생성 트랜잭션의 경우 가스비를 추가함. if isContractCreation && isHomestead { gas = params.TxGasContractCreation } else {