aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-07-17 21:43:16 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-07-23 16:45:31 +0800
commit8fc983097150325063a2e7558e0e14b2a8acca34 (patch)
treeb39d14a02b8d517ffbef2810c5af5f3a2277ac2c /xeth
parent0cff61bedaca42c94d162853cd55eb1e013dadb9 (diff)
downloadgo-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.tar
go-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.tar.gz
go-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.tar.bz2
go-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.tar.lz
go-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.tar.xz
go-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.tar.zst
go-tangerine-8fc983097150325063a2e7558e0e14b2a8acca34.zip
cmd/core,xeth: removed unneeded states & added batch writes
Diffstat (limited to 'xeth')
-rw-r--r--xeth/xeth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go
index 3bc22a43d..078a3fb8a 100644
--- a/xeth/xeth.go
+++ b/xeth/xeth.go
@@ -123,7 +123,7 @@ func New(ethereum *eth.Ethereum, frontend Frontend) *XEth {
if frontend == nil {
xeth.frontend = dummyFrontend{}
}
- xeth.state = NewState(xeth, xeth.backend.ChainManager().TransState())
+ xeth.state = NewState(xeth, xeth.backend.ChainManager().State())
go xeth.start()
go xeth.filterManager.Start()