diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-22 04:02:56 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-23 17:50:11 +0800 |
commit | 5cb5df003de428bc7fb406caf2af46496d70cef4 (patch) | |
tree | 951696cc276452a2569b8deefcdf6f71c1561c3f /eth | |
parent | 498b24270a9c301a9251150afb7f3889c929765c (diff) | |
download | dexon-5cb5df003de428bc7fb406caf2af46496d70cef4.tar.gz dexon-5cb5df003de428bc7fb406caf2af46496d70cef4.tar.zst dexon-5cb5df003de428bc7fb406caf2af46496d70cef4.zip |
eth: start tx pool in a goroutine
Diffstat (limited to 'eth')
-rw-r--r-- | eth/backend.go | 2 |
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() |