Skip to content

Commit

Permalink
fix removed dmsg-monitor codes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpalide committed Mar 26, 2024
1 parent 5cd587a commit 0de62c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/network-monitor/network-monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
func init() {
var helpflag bool
commands.RootCmd.SetUsageTemplate(help)
commands.RootCmd.PersistentFlags().BoolVarP(&helpflag, "help", "h", false, "help for dmsg-monitor")
commands.RootCmd.PersistentFlags().BoolVarP(&helpflag, "help", "h", false, "help for network-monitor")
commands.RootCmd.SetHelpCommand(&cobra.Command{Hidden: true})
commands.RootCmd.PersistentFlags().MarkHidden("help") //nolint
}
Expand Down
2 changes: 1 addition & 1 deletion internal/monitors/lig.go → internal/monitors/lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/skycoin/skywire-utilities/pkg/cipher"
)

// MonitorConfig is the structure of dmsg-monitor's config
// MonitorConfig is the structure of monitor's config
type MonitorConfig struct {
SK cipher.SecKey `json:"sk,omitempty"`
PK cipher.PubKey `json:"pk,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion pkg/tpd-monitor/api/api.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Package api pkg/dmsg-monitor/api.go
// Package api pkg/tpd-monitor/api.go
package api

import (
Expand Down

0 comments on commit 0de62c8

Please sign in to comment.