Skip to content

Commit

Permalink
fix: use SetCell instead of setCell
Browse files Browse the repository at this point in the history
  • Loading branch information
rootulp committed Jul 3, 2023
1 parent f852fa7 commit 173f4b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extendeddatacrossword.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func (eds *ExtendedDataSquare) solveCrosswordRow(

// Insert rebuilt shares into square.
for c, s := range rebuiltShares {
eds.setCell(uint(r), uint(c), s)
eds.SetCell(uint(r), uint(c), s)
}

return true, true, nil
Expand Down Expand Up @@ -235,7 +235,7 @@ func (eds *ExtendedDataSquare) solveCrosswordCol(

// Insert rebuilt shares into square.
for r, s := range rebuiltShares {
eds.setCell(uint(r), uint(c), s)
eds.SetCell(uint(r), uint(c), s)
}

return true, true, nil
Expand Down

0 comments on commit 173f4b6

Please sign in to comment.