reactor event channels have large buffer to allow more tolerance

This commit is contained in:
zelig
2014-07-21 19:26:01 +01:00
parent 9f7d8ff302
commit 74abc457ad
2 changed files with 8 additions and 8 deletions

View File

@ -38,8 +38,8 @@ type ExtApplication struct {
func NewExtApplication(container AppContainer, lib *UiLib) *ExtApplication {
app := &ExtApplication{
ethpub.NewPEthereum(lib.eth),
make(chan ethreact.Event, 10),
make(chan ethreact.Event, 10),
make(chan ethreact.Event, 100),
make(chan ethreact.Event, 100),
make(chan bool),
make(chan bool),
container,