diff options
-rw-r--r-- | core/vm/gas_table.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/gas_table.go b/core/vm/gas_table.go index 3b0698ce9..13712295c 100644 --- a/core/vm/gas_table.go +++ b/core/vm/gas_table.go @@ -324,7 +324,7 @@ func gasCall(gt params.GasTable, evm *EVM, contract *Contract, stack *Stack, mem eip158 = evm.ChainConfig().IsEIP158(evm.BlockNumber) ) if eip158 { - if evm.StateDB.Empty(address) && transfersValue { + if transfersValue && evm.StateDB.Empty(address) { gas += params.CallNewAccountGas } } else if !evm.StateDB.Exist(address) { |