diff --git a/pkg/cmd/run_node.go b/pkg/cmd/run_node.go index 27dff229f0..a5f667bee1 100644 --- a/pkg/cmd/run_node.go +++ b/pkg/cmd/run_node.go @@ -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 { diff --git a/pkg/store/keys.go b/pkg/store/keys.go index 02053bb849..2f8d2c733b 100644 --- a/pkg/store/keys.go +++ b/pkg/store/keys.go @@ -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//h and rhb//d HeightToDAHeightKey = "rhb"