You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When implementing a new protocol in Onet I forgot to initialize the chan that sends back the response to the service. In this case, I would expect the service and/or protocol to fail and output an error, but it just waits forever.
How to reproduce
Clone the cothority_template, in protocol/protocol.go remove line 43 ChildCount: make(chan int),. Then, launch the protocol's or service's tests. The tests will just hang.
The text was updated successfully, but these errors were encountered:
When implementing a new protocol in Onet I forgot to initialize the chan that sends back the response to the service. In this case, I would expect the service and/or protocol to fail and output an error, but it just waits forever.
How to reproduce
Clone the cothority_template, in
protocol/protocol.go
remove line 43ChildCount: make(chan int),
. Then, launch the protocol's or service's tests. The tests will just hang.The text was updated successfully, but these errors were encountered: