aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-04-15 23:31:18 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-04-15 23:32:21 +0800
commite581f2690ad61a9f74ee14a04ae9746d1a001087 (patch)
tree17c5aebbd58d674c327f7a14bf9668ecf0ea0834 /accounts/abi
parent6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea (diff)
downloadgo-tangerine-e581f2690ad61a9f74ee14a04ae9746d1a001087.tar
go-tangerine-e581f2690ad61a9f74ee14a04ae9746d1a001087.tar.gz
go-tangerine-e581f2690ad61a9f74ee14a04ae9746d1a001087.tar.bz2
go-tangerine-e581f2690ad61a9f74ee14a04ae9746d1a001087.tar.lz
go-tangerine-e581f2690ad61a9f74ee14a04ae9746d1a001087.tar.xz
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.go2
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
}