Skip to content

Commit

Permalink
fix(client): Fix mainloop block
Browse files Browse the repository at this point in the history
  • Loading branch information
gfanton committed Sep 18, 2018
1 parent d27083e commit 577b840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/node/nodeclient.go
Expand Up @@ -40,7 +40,7 @@ func (n *Node) EventStream(input *node.EventStreamInput, stream node.Service_Eve
}
return true
},
queue: make(chan *p2p.Event, 1),
queue: make(chan *p2p.Event, 100),
}

n.clientEventsMutex.Lock()
Expand Down

0 comments on commit 577b840

Please sign in to comment.