Skip to content

Commit

Permalink
fix: fixes bad status
Browse files Browse the repository at this point in the history
  • Loading branch information
HashMapsData2Value committed Oct 25, 2024
1 parent 4cf589d commit 8b4e5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/pages/transaction/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func (m *ViewModel) UpdateTxnURLAndQRCode() error {
isOnline = true
case "Offline":
isOnline = false
case "NotParticipating": // This status means the account can never participate in consensus
case "Not Participating": // This status means the account can never participate in consensus
m.urlTxn = ""
m.asciiQR = ""
m.hint = fmt.Sprintf("%s is NotParticipating. Cannot register key.", m.Data.Address)
Expand Down

0 comments on commit 8b4e5b4

Please sign in to comment.