diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-05-09 15:59:27 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-05-09 16:24:31 +0800 |
commit | 7d59c5c58d93f97b8ee77f61811f2ad72f25388a (patch) | |
tree | c6fef04eecd02551bd721a470afb3d086a31469e /eth/api.go | |
parent | 8aa4597c9e3f809f1e17f3d6922b865d6e13ec4d (diff) | |
download | go-tangerine-7d59c5c58d93f97b8ee77f61811f2ad72f25388a.tar.gz go-tangerine-7d59c5c58d93f97b8ee77f61811f2ad72f25388a.tar.zst go-tangerine-7d59c5c58d93f97b8ee77f61811f2ad72f25388a.zip |
eth: fixed tracing functions using the current header instead of parent
Fixes #2525
Diffstat (limited to 'eth/api.go')
-rw-r--r-- | eth/api.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eth/api.go b/eth/api.go index bd8179962..1d66f53fe 100644 --- a/eth/api.go +++ b/eth/api.go @@ -1841,7 +1841,7 @@ func (s *PrivateDebugAPI) TraceTransaction(txHash common.Hash, logger *vm.LogCon } // Mutate the state if we haven't reached the tracing transaction yet if uint64(idx) < txIndex { - vmenv := core.NewEnv(stateDb, s.config, s.eth.BlockChain(), msg, parent.Header(), vm.Config{}) + vmenv := core.NewEnv(stateDb, s.config, s.eth.BlockChain(), msg, block.Header(), vm.Config{}) _, _, err := core.ApplyMessage(vmenv, msg, new(core.GasPool).AddGas(tx.Gas())) if err != nil { return nil, fmt.Errorf("mutation failed: %v", err) @@ -1849,7 +1849,7 @@ func (s *PrivateDebugAPI) TraceTransaction(txHash common.Hash, logger *vm.LogCon continue } // Otherwise trace the transaction and return - vmenv := core.NewEnv(stateDb, s.config, s.eth.BlockChain(), msg, parent.Header(), vm.Config{Debug: true, Logger: *logger}) + vmenv := core.NewEnv(stateDb, s.config, s.eth.BlockChain(), msg, block.Header(), vm.Config{Debug: true, Logger: *logger}) ret, gas, err := core.ApplyMessage(vmenv, msg, new(core.GasPool).AddGas(tx.Gas())) if err != nil { return nil, fmt.Errorf("tracing failed: %v", err) |