Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const timestampFormat = "Mon 02 Jan 2006 3:04:05 PM MST"
func validateSignedMessage(inp string) (*SignedMessage, error) {
var sm SignedMessage

// Strip newlines form inp
// Strip newlines from inp
inp = strings.ReplaceAll(inp, "\n", "")

err := json.Unmarshal([]byte(inp), &sm)
Expand Down