diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-17 21:43:16 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-23 16:45:31 +0800 |
commit | 8fc983097150325063a2e7558e0e14b2a8acca34 (patch) | |
tree | b39d14a02b8d517ffbef2810c5af5f3a2277ac2c /core/chain_manager_test.go | |
parent | 0cff61bedaca42c94d162853cd55eb1e013dadb9 (diff) | |
download | go-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.tar.gz go-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.tar.zst go-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.zip |
cmd/core,xeth: removed unneeded states & added batch writes
Diffstat (limited to 'core/chain_manager_test.go')
-rw-r--r-- | core/chain_manager_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/chain_manager_test.go b/core/chain_manager_test.go index d247c3e50..e2ad86942 100644 --- a/core/chain_manager_test.go +++ b/core/chain_manager_test.go @@ -392,7 +392,6 @@ func chm(genesis *types.Block, db common.Database) *ChainManager { bc.futureBlocks, _ = lru.New(100) bc.processor = bproc{} bc.ResetWithGenesisBlock(genesis) - bc.txState = state.ManageState(bc.State()) return bc } |