mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 20:56:42 +00:00
Serving http requests in a separate goroutine.
This commit is contained in:
parent
afcc7c4e79
commit
9bbdcd0f3f
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue