|
|
|
@ -6,6 +6,7 @@ import ( |
|
|
|
|
"github.com/ethereum/eth-go/ethchain" |
|
|
|
|
"github.com/ethereum/eth-go/ethcrypto" |
|
|
|
|
"github.com/ethereum/eth-go/ethlog" |
|
|
|
|
"github.com/ethereum/eth-go/ethreact" |
|
|
|
|
"github.com/ethereum/eth-go/ethrpc" |
|
|
|
|
"github.com/ethereum/eth-go/ethutil" |
|
|
|
|
"github.com/ethereum/eth-go/ethwire" |
|
|
|
@ -71,7 +72,7 @@ type Ethereum struct { |
|
|
|
|
|
|
|
|
|
listening bool |
|
|
|
|
|
|
|
|
|
reactor *ethutil.ReactorEngine |
|
|
|
|
reactor *ethreact.ReactorEngine |
|
|
|
|
|
|
|
|
|
RpcServer *ethrpc.JsonRpcServer |
|
|
|
|
|
|
|
|
@ -106,7 +107,7 @@ func New(db ethutil.Database, clientIdentity ethwire.ClientIdentity, keyManager |
|
|
|
|
keyManager: keyManager, |
|
|
|
|
clientIdentity: clientIdentity, |
|
|
|
|
} |
|
|
|
|
ethereum.reactor = ethutil.NewReactorEngine() |
|
|
|
|
ethereum.reactor = ethreact.New() |
|
|
|
|
|
|
|
|
|
ethereum.txPool = ethchain.NewTxPool(ethereum) |
|
|
|
|
ethereum.blockChain = ethchain.NewBlockChain(ethereum) |
|
|
|
@ -118,7 +119,7 @@ func New(db ethutil.Database, clientIdentity ethwire.ClientIdentity, keyManager |
|
|
|
|
return ethereum, nil |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (s *Ethereum) Reactor() *ethutil.ReactorEngine { |
|
|
|
|
func (s *Ethereum) Reactor() *ethreact.ReactorEngine { |
|
|
|
|
return s.reactor |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -350,6 +351,7 @@ func (s *Ethereum) ReapDeadPeerHandler() { |
|
|
|
|
|
|
|
|
|
// Start the ethereum
|
|
|
|
|
func (s *Ethereum) Start(seed bool) { |
|
|
|
|
s.reactor.Start() |
|
|
|
|
// Bind to addr and port
|
|
|
|
|
ln, err := net.Listen("tcp", ":"+s.Port) |
|
|
|
|
if err != nil { |
|
|
|
@ -461,6 +463,9 @@ func (s *Ethereum) Stop() { |
|
|
|
|
s.txPool.Stop() |
|
|
|
|
s.stateManager.Stop() |
|
|
|
|
|
|
|
|
|
s.reactor.Flush() |
|
|
|
|
s.reactor.Stop() |
|
|
|
|
|
|
|
|
|
ethlogger.Infoln("Server stopped") |
|
|
|
|
close(s.shutdownChan) |
|
|
|
|
} |
|
|
|
|