aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-22 04:02:56 +0800
committerobscuren <geffobscura@gmail.com>2015-04-23 17:50:11 +0800
commit5cb5df003de428bc7fb406caf2af46496d70cef4 (patch)
tree951696cc276452a2569b8deefcdf6f71c1561c3f /eth
parent498b24270a9c301a9251150afb7f3889c929765c (diff)
downloadgo-tangerine-5cb5df003de428bc7fb406caf2af46496d70cef4.tar
go-tangerine-5cb5df003de428bc7fb406caf2af46496d70cef4.tar.gz
go-tangerine-5cb5df003de428bc7fb406caf2af46496d70cef4.tar.bz2
go-tangerine-5cb5df003de428bc7fb406caf2af46496d70cef4.tar.lz
go-tangerine-5cb5df003de428bc7fb406caf2af46496d70cef4.tar.xz
go-tangerine-5cb5df003de428bc7fb406caf2af46496d70cef4.tar.zst
go-tangerine-5cb5df003de428bc7fb406caf2af46496d70cef4.zip
eth: start tx pool in a goroutine
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go
index 88456e448..a2c0baf8b 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -379,7 +379,7 @@ func (s *Ethereum) Start() error {
}
// Start services
- s.txPool.Start()
+ go s.txPool.Start()
if s.whisper != nil {
s.whisper.Start()