vm: Replace some SstoreClearGas with SstoreResetGas

pull/2724/head
Yoichi Hirai 8 years ago
parent 4f3f6e28d5
commit 86bc7795a3
  1. 2
      core/vm/jit.go
  2. 2
      core/vm/vm.go

@ -421,7 +421,7 @@ func jitCalculateGasAndSize(env Environment, contract *Contract, instr instructi
g = params.SstoreClearGas
} else {
g = params.SstoreClearGas
g = params.SstoreResetGas
}
gas.Set(g)
case SUICIDE:

@ -306,7 +306,7 @@ func calculateGasAndSize(env Environment, contract *Contract, caller ContractRef
g = params.SstoreClearGas
} else {
// non 0 => non 0 (or 0 => 0)
g = params.SstoreClearGas
g = params.SstoreResetGas
}
gas.Set(g)
case SUICIDE:

Loading…
Cancel
Save