Skip to content

Commit

Permalink
Merge branch 'main' into limit-number-of-transactions-in-prepare-prop…
Browse files Browse the repository at this point in the history
…osal
  • Loading branch information
rach-id authored Oct 14, 2024
2 parents 98ecf6d + 919a26f commit 384ccfe
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 384ccfe

Please sign in to comment.