From 9bbdcd0f3f3e340a03e8f1de3b4f938280d1cb8b Mon Sep 17 00:00:00 2001 From: "Daniel A. Nagy" Date: Wed, 11 Feb 2015 11:43:43 +0100 Subject: [PATCH] Serving http requests in a separate goroutine. --- eth/backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/backend.go b/eth/backend.go index 367ca7ec68..0e51f3a277 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -148,7 +148,7 @@ func New(config *Config) (*Ethereum, error) { ChunkStore: netStore, } dpa.Start() - bzz.StartHttpServer(dpa) + go bzz.StartHttpServer(dpa) nat, err := p2p.ParseNAT(config.NATType, config.PMPGateway) if err != nil {