aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/state_manager.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-01 16:22:25 +0800
committerobscuren <geffobscura@gmail.com>2014-08-01 16:22:25 +0800
commit8bed47a2d4377b7a49f34350ae5c5ea50464b95d (patch)
tree3b1923c6560da3a08bfb88783e49b353f2609ea9 /ethchain/state_manager.go
parent5a2d62e4d9e551f16f094216da70b7a6f5d2bf00 (diff)
parent9831619881c5264c2449ce1b906108d892b6e1e1 (diff)
downloaddexon-8bed47a2d4377b7a49f34350ae5c5ea50464b95d.tar.gz
dexon-8bed47a2d4377b7a49f34350ae5c5ea50464b95d.tar.zst
dexon-8bed47a2d4377b7a49f34350ae5c5ea50464b95d.zip
Merge branch 'feature/ethutil-refactor' of https://github.com/ethersphere/eth-go into ethersphere-feature/ethutil-refactor
Diffstat (limited to 'ethchain/state_manager.go')
-rw-r--r--ethchain/state_manager.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/ethchain/state_manager.go b/ethchain/state_manager.go
index 9408cf331..226b2fe73 100644
--- a/ethchain/state_manager.go
+++ b/ethchain/state_manager.go
@@ -6,6 +6,7 @@ import (
"fmt"
"github.com/ethereum/eth-go/ethcrypto"
"github.com/ethereum/eth-go/ethlog"
+ "github.com/ethereum/eth-go/ethreact"
"github.com/ethereum/eth-go/ethstate"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethwire"
@@ -36,7 +37,7 @@ type EthManager interface {
BlockChain() *BlockChain
TxPool() *TxPool
Broadcast(msgType ethwire.MsgType, data []interface{})
- Reactor() *ethutil.ReactorEngine
+ Reactor() *ethreact.ReactorEngine
PeerCount() int
IsMining() bool
IsListening() bool