Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Chirag018 authored Sep 21, 2023
1 parent 9d8191f commit 3df753a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/square/square.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,10 @@ func (s Square) IsEmpty() bool {

// EmptySquare returns a 1x1 square with a single tail padding share
func EmptySquare() Square {
// 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 := appconsts.MinSquareSize
return shares.TailPaddingShares(MinShareCount * MinShareCount)
minShareCount := appconsts.MinSquareSize*appconsts.MinSquareSize
return shares.TailPaddingShares(minShareCount)
}

func WriteSquare(
Expand Down

0 comments on commit 3df753a

Please sign in to comment.