Skip to content
Merged
Show file tree
Hide file tree
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 pkg/cmd/p2p.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
rpc "github.com/evstack/ev-node/types/pb/evnode/v1/v1connect"
)

// NodeInfoCmd returns information about the running node via RPC
// NetInfoCmd returns information about the running node via RPC
var NetInfoCmd = &cobra.Command{
Use: "net-info",
Short: "Get information about a running node via RPC",
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ type RPCConfig struct {
EnableDAVisualization bool `mapstructure:"enable_da_visualization" yaml:"enable_da_visualization" comment:"Enable DA visualization endpoints for monitoring blob submissions. Default: false"`
}

// Validate ensures validates the config and ensure that the root directory exists.
// Validate validates the config and ensures that the root directory exists.
// It creates the directory if it does not exist.
func (c *Config) Validate() error {
if c.RootDir == "" {
Expand Down
Loading