a bit more fil commitment short-circuiting

This commit is contained in:
vyzo 2021-07-05 11:38:53 +03:00
parent 2ea2abc07d
commit 918a7ec749

View File

@ -884,6 +884,10 @@ func (s *SplitStore) doCompact(curTs *types.TipSet) error {
count = 0
for c := range txnRefs {
if isFilCommitment(c) {
continue
}
mark, err := markSet.Has(c)
if err != nil {
return xerrors.Errorf("error checking markset for %s: %w", c, err)