lotus/chain/store/splitstore/liveset.go
2021-03-05 14:46:17 +02:00

12 lines
153 B
Go

package splitstore
import (
cid "github.com/ipfs/go-cid"
)
type LiveSet interface {
Mark(cid.Cid) error
Has(cid.Cid) (bool, error)
Close() error
}