forked from cerc-io/plugeth
core/vm: avoid state lookup during gas calc for call (#15061)
This commit is contained in:
parent
dc92779c0a
commit
23b51a68cb
@ -324,7 +324,7 @@ func gasCall(gt params.GasTable, evm *EVM, contract *Contract, stack *Stack, mem
|
|||||||
eip158 = evm.ChainConfig().IsEIP158(evm.BlockNumber)
|
eip158 = evm.ChainConfig().IsEIP158(evm.BlockNumber)
|
||||||
)
|
)
|
||||||
if eip158 {
|
if eip158 {
|
||||||
if evm.StateDB.Empty(address) && transfersValue {
|
if transfersValue && evm.StateDB.Empty(address) {
|
||||||
gas += params.CallNewAccountGas
|
gas += params.CallNewAccountGas
|
||||||
}
|
}
|
||||||
} else if !evm.StateDB.Exist(address) {
|
} else if !evm.StateDB.Exist(address) {
|
||||||
|
Loading…
Reference in New Issue
Block a user