package model import "github.com/kaspanet/kaspad/domain/consensus/model/externalapi" // PruningStore represents a store for the current pruning state type PruningStore interface { Store Stage(pruningPointBlockHash *externalapi.DomainHash, pruningPointUTXOSetBytes []byte) IsStaged() bool PruningPoint(dbContext DBReader) (*externalapi.DomainHash, error) HasPruningPoint(dbContext DBReader) (bool, error) PruningPointSerializedUTXOSet(dbContext DBReader) ([]byte, error) }