diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-04-15 23:31:18 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-04-15 23:32:21 +0800 |
commit | e581f2690ad61a9f74ee14a04ae9746d1a001087 (patch) | |
tree | 17c5aebbd58d674c327f7a14bf9668ecf0ea0834 /accounts/abi | |
parent | 6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea (diff) | |
download | go-tangerine-e581f2690ad61a9f74ee14a04ae9746d1a001087.tar.gz go-tangerine-e581f2690ad61a9f74ee14a04ae9746d1a001087.tar.zst go-tangerine-e581f2690ad61a9f74ee14a04ae9746d1a001087.zip |
accounts/abi/bind/backends: estimate needed gas, not used
Diffstat (limited to 'accounts/abi')
-rw-r--r-- | accounts/abi/bind/backends/simulated.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/abi/bind/backends/simulated.go b/accounts/abi/bind/backends/simulated.go index 213a4f1a7..6cdb9a0cc 100644 --- a/accounts/abi/bind/backends/simulated.go +++ b/accounts/abi/bind/backends/simulated.go @@ -152,7 +152,7 @@ func (b *SimulatedBackend) EstimateGasLimit(sender common.Address, contract *com vmenv := core.NewEnv(statedb, chainConfig, b.blockchain, msg, block.Header(), vm.Config{}) gaspool := new(core.GasPool).AddGas(common.MaxBig) - _, gas, err := core.ApplyMessage(vmenv, msg, gaspool) + _, gas, _, err := core.NewStateTransition(vmenv, msg, gaspool).TransitionDb() return gas, err } |