lotus/chain/store/splitstore/liveset.go

12 lines
153 B
Go
Raw Normal View History

2020-11-26 14:53:16 +00:00
package splitstore
import (
cid "github.com/ipfs/go-cid"
)
type LiveSet interface {
Mark(cid.Cid) error
Has(cid.Cid) (bool, error)
Close() error
}