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
While testing an initial implementation of #51 it became apparent that errors in the coordinator state machine process loop fell through to the top level, which meant that we did not return an error packet, we just logged an error locally.
Update the state machines to always check for errors when it is possible to return an error packet, and do so if necessary.
The text was updated successfully, but these errors were encountered:
Commit 2d57f20 returns an OperationResult::SignError when gather_sig_shares fails. We were already doing this for DkgError. There are lots more ? error redirects in the coordinator process_message loops, they should all be examined.
While testing an initial implementation of #51 it became apparent that errors in the coordinator state machine process loop fell through to the top level, which meant that we did not return an error packet, we just logged an error locally.
Update the state machines to always check for errors when it is possible to return an error packet, and do so if necessary.
The text was updated successfully, but these errors were encountered: