Skip to content

Commit

Permalink
review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusKysel committed Oct 14, 2024
1 parent e26f007 commit 23b13c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/initiator/reshare.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ var GenerateReshareMsg = &cobra.Command{
signedProofs[i],
)
if err != nil {
logger.Fatal("😥 Failed to construct reshare message hash: ", zap.Error(err))
logger.Fatal("😥 Failed to construct reshare message: ", zap.Error(err))
}
rMsgs = append(rMsgs, rMsg)
}
Expand Down
2 changes: 1 addition & 1 deletion cli/initiator/resigning.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ var GenerateResignMsg = &cobra.Command{
signedProofs[i],
)
if err != nil {
logger.Fatal("😥 Failed to construct resign message hash:", zap.Error(err))
logger.Fatal("😥 Failed to construct resign message:", zap.Error(err))
}
rMsgs = append(rMsgs, rMsg)
}
Expand Down

0 comments on commit 23b13c4

Please sign in to comment.