Skip to content
Open
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/run_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"github.com/evstack/ev-node/pkg/telemetry"
)

// ParseConfig is an helpers that loads the node configuration and validates it.
// ParseConfig is a helper that loads the node configuration and validates it.
func ParseConfig(cmd *cobra.Command) (rollconf.Config, error) {
nodeConfig, err := rollconf.Load(cmd)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion pkg/store/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const (
// It avoids to walk over the HeightToDAHeightKey to find the first DA included height.
GenesisDAHeightKey = "gdh"

// HeightToDAHeightKey is the key prefix used for persisting the mapping from a Evolve height
// HeightToDAHeightKey is the key prefix used for persisting the mapping from an Evolve height
// to the DA height where the block's header/data was included.
// Full keys are like: rhb/<evolve_height>/h and rhb/<evolve_height>/d
HeightToDAHeightKey = "rhb"
Expand Down
Loading