From 5cb5df003de428bc7fb406caf2af46496d70cef4 Mon Sep 17 00:00:00 2001 From: obscuren Date: Tue, 21 Apr 2015 22:02:56 +0200 Subject: [PATCH] eth: start tx pool in a goroutine --- eth/backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()