Skip to content

Commit

Permalink
Merge pull request fedimint#6501 from dpc/24-12-03-fix-typo
Browse files Browse the repository at this point in the history
fix(server): typo in log statement
  • Loading branch information
elsirion authored Dec 4, 2024
2 parents c47c495 + cdb5978 commit 7b7bf0f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fedimint-server/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,9 @@ impl ServerConfig {
Ok((peer_id, DkgPeerMsg::Done)) => {
info!(
target: LOG_NET_PEER_DKG,
pper_id = %peer_id, "Got completion confirmation");
peer_id = %peer_id,
"Got completion confirmation"
);
done_peers.insert(peer_id);
},
Ok((peer_id, msg)) => {
Expand Down

0 comments on commit 7b7bf0f

Please sign in to comment.