aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-06-11 03:10:18 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-06-11 03:10:18 +0800
commitacb59f3243bf1e12185912ba0684007247ade7ca (patch)
treec746236deea60c34d40c0238a4551a2eafd9b8ae /eth
parent858a6f0be9da459a87004755dffae2c3fc5544d2 (diff)
parent4407524d13994759230ce6d31d828914597e8f6c (diff)
downloadgo-tangerine-acb59f3243bf1e12185912ba0684007247ade7ca.tar
go-tangerine-acb59f3243bf1e12185912ba0684007247ade7ca.tar.gz
go-tangerine-acb59f3243bf1e12185912ba0684007247ade7ca.tar.bz2
go-tangerine-acb59f3243bf1e12185912ba0684007247ade7ca.tar.lz
go-tangerine-acb59f3243bf1e12185912ba0684007247ade7ca.tar.xz
go-tangerine-acb59f3243bf1e12185912ba0684007247ade7ca.tar.zst
go-tangerine-acb59f3243bf1e12185912ba0684007247ade7ca.zip
Merge pull request #1223 from obscuren/tx-pool-vroooooom
core: fixed race condition in the transaction pool
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/eth/backend.go b/eth/backend.go
index fcbea04a2..60e9359dc 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -466,8 +466,6 @@ func (s *Ethereum) Start() error {
s.StartAutoDAG()
}
- // Start services
- go s.txPool.Start()
s.protocolManager.Start()
if s.whisper != nil {
@@ -513,9 +511,6 @@ func (s *Ethereum) StartForTest() {
ClientString: s.net.Name,
ProtocolVersion: ProtocolVersion,
})
-
- // Start services
- s.txPool.Start()
}
// AddPeer connects to the given node and maintains the connection until the