Skip to content

Commit

Permalink
fix: failed broadcast should not fail (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
itegulov authored Apr 25, 2023
1 parent 7c454c6 commit 1aa3b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpc-recovery/src/leader_node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub async fn run<T: OAuthTokenVerifier + 'static>(config: Config) {
Ok(messages) => messages,
Err(err) => {
tracing::error!("Unable to broadcast public keys: {err}");
return;
Vec::new()
}
};
tracing::debug!(?messages, "broadcasted public key statuses");
Expand Down

0 comments on commit 1aa3b22

Please sign in to comment.