diff --git a/blockstore/splitstore/debug.go b/blockstore/splitstore/debug.go index 9b4f4ba89..a8f6f2981 100644 --- a/blockstore/splitstore/debug.go +++ b/blockstore/splitstore/debug.go @@ -43,6 +43,14 @@ func (d *debugLog) LogMove(curTs *types.TipSet, cid cid.Cid, writeEpoch abi.Chai // TODO } +func (d *debugLog) FlushMove() { + if d == nil { + return + } + + // TODO +} + func (d *debugLog) Close() error { if d == nil { return nil diff --git a/blockstore/splitstore/splitstore.go b/blockstore/splitstore/splitstore.go index 3ff6b5c14..8fe3bdddb 100644 --- a/blockstore/splitstore/splitstore.go +++ b/blockstore/splitstore/splitstore.go @@ -806,6 +806,8 @@ func (s *SplitStore) doCompact(curTs *types.TipSet) error { return nil }) + s.debug.FlushMove() + if err != nil { return xerrors.Errorf("error collecting cold objects: %w", err) }