Skip to content

Commit

Permalink
Update alert message
Browse files Browse the repository at this point in the history
  • Loading branch information
jcn01 authored Jul 5, 2024
1 parent 417e3da commit 9cefb1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func HeightAlertMsg(height uint64, notReached map[string]uint64, reached map[str
var buf bytes.Buffer
totalNodes := len(reached) + len(notReached) + len(notConnected)

fmt.Fprintf(&buf, "<b>⚠️ Fork Alert </b>\n\n")
fmt.Fprintf(&buf, "<b> Alert </b>\n\n")
fmt.Fprintf(&buf, "Expected network height: <b>%d</b>\n", height)
fmt.Fprintf(&buf, "Total nodes: <b>%d</b>", totalNodes)

Expand Down Expand Up @@ -280,7 +280,7 @@ func HashAlertMsg(height uint64, hashes map[string]sdk.Hash) string {

var buf bytes.Buffer

fmt.Fprintf(&buf, "<b>❗Fork Alert </b>\n\n")
fmt.Fprintf(&buf, "<b> Alert </b>\n\n")
fmt.Fprintf(&buf, "Inconsistent block hash: <b>%d</b>\n", height)

fmt.Fprintf(&buf, "<pre>")
Expand Down

0 comments on commit 9cefb1e

Please sign in to comment.