diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-11 01:50:13 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-11 01:50:13 +0800 |
commit | 617804c32731c5103319e7072557f62a9ce63836 (patch) | |
tree | baca8a8f2e014892983ca45e8ec618ab54121526 /eth | |
parent | 3de51f76eea87f8e8a4b8a7277cd294529e28491 (diff) | |
parent | bbe8b186600992ada6da9e75e9976cd5a9dc0ae3 (diff) | |
download | dexon-617804c32731c5103319e7072557f62a9ce63836.tar dexon-617804c32731c5103319e7072557f62a9ce63836.tar.gz dexon-617804c32731c5103319e7072557f62a9ce63836.tar.bz2 dexon-617804c32731c5103319e7072557f62a9ce63836.tar.lz dexon-617804c32731c5103319e7072557f62a9ce63836.tar.xz dexon-617804c32731c5103319e7072557f62a9ce63836.tar.zst dexon-617804c32731c5103319e7072557f62a9ce63836.zip |
Merge branch 'rpcfrontier' of github.com:ethereum/go-ethereum into rpcfrontier
Diffstat (limited to 'eth')
-rw-r--r-- | eth/backend.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/eth/backend.go b/eth/backend.go index 584d60c7e..f42ceda69 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -275,6 +275,17 @@ func (s *Ethereum) Start() error { return nil } +func (s *Ethereum) StartForTest() { + jsonlogger.LogJson(&logger.LogStarting{ + ClientString: s.net.Name, + ProtocolVersion: ProtocolVersion, + }) + + // Start services + s.txPool.Start() + s.blockPool.Start() +} + func (self *Ethereum) SuggestPeer(nodeURL string) error { n, err := discover.ParseNode(nodeURL) if err != nil { |