You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, only a private setCell method is used internally to set repaired cells, while we can enable it publicly so that API users can fill cells/shares on the fly during the repairing process. Currently, a user has to alter the flattened data square slice imported with importing helper, which requires a relatively complicated formula) to calculate cell position. Instead, users would benefit from public coordinates based SetCell.
Additionally, SetCell should allow setting values only for the nil cells to prevent breaking the integrity of the imported square verified by the imported and cached roots.. This also means that public SetCell won't need to reset roots like its private bro setCelldoes.
The text was updated successfully, but these errors were encountered:
Currently, only a private
setCell
method is used internally to set repaired cells, while we can enable it publicly so that API users can fill cells/shares on the fly during the repairing process. Currently, a user has to alter the flattened data square slice imported with importing helper, which requires a relatively complicated formula) to calculate cell position. Instead, users would benefit from public coordinates basedSetCell
.Additionally,
SetCell
should allow setting values only for the nil cells to prevent breaking the integrity of the imported square verified by the imported and cached roots.. This also means that publicSetCell
won't need to reset roots like its private brosetCell
does.The text was updated successfully, but these errors were encountered: