lotus/chain/store/splitstore/liveset.go

14 lines
179 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
}
2020-11-26 15:49:47 +00:00
2020-11-26 16:58:03 +00:00
var markBytes = []byte{}