diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-07 01:26:16 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-07 01:26:16 +0800 |
commit | cd856cb2133d390758bb24b88fa3b538bb7bc306 (patch) | |
tree | c6d75750802c2de16ae095569a8f2e0c05ce256f /miner/worker.go | |
parent | ed84b58af57809a743e5be6f6ea53c079c50b765 (diff) | |
download | go-tangerine-cd856cb2133d390758bb24b88fa3b538bb7bc306.tar.gz go-tangerine-cd856cb2133d390758bb24b88fa3b538bb7bc306.tar.zst go-tangerine-cd856cb2133d390758bb24b88fa3b538bb7bc306.zip |
Separated block db from state db. Partial fix for #416
Diffstat (limited to 'miner/worker.go')
-rw-r--r-- | miner/worker.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/worker.go b/miner/worker.go index cd105fa73..21a0522e8 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -30,7 +30,7 @@ type environment struct { } func env(block *types.Block, eth core.Backend) *environment { - state := state.New(block.Root(), eth.Db()) + state := state.New(block.Root(), eth.StateDb()) env := &environment{ totalUsedGas: new(big.Int), state: state, |