Skip to content

Commit

Permalink
chore: comments cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id committed Oct 12, 2024
1 parent 8ba82c1 commit 0812b74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/appconsts/global_consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
// These constants were originally sourced from:
// https://github.com/celestiaorg/celestia-specs/blob/master/src/specs/consensus.md#constants
//
// They can not change throughout the lifetime of a network.
// They cannot change throughout the lifetime of a network.
const (
// DefaultShareVersion is the defacto share version. Use this if you are
// unsure of which version to use.
Expand All @@ -20,7 +20,7 @@ const (
// MinSquareSize is the smallest original square width.
MinSquareSize = 1

// MinshareCount is the minimum number of shares allowed in the original
// MinShareCount is the minimum number of shares allowed in the original
// data square.
MinShareCount = MinSquareSize * MinSquareSize

Expand Down Expand Up @@ -51,7 +51,7 @@ var (
SupportedShareVersions = share.SupportedShareVersions
)

// returns the delay in blocks after a quorum has been reached that the chain should upgrade to the new version.
// UpgradeHeightDelay returns the delay in blocks after a quorum has been reached that the chain should upgrade to the new version.
func UpgradeHeightDelay() int64 {
if OverrideUpgradeHeightDelayStr != "" {
parsedValue, err := strconv.ParseInt(OverrideUpgradeHeightDelayStr, 10, 64)
Expand Down

0 comments on commit 0812b74

Please sign in to comment.