lbcd/claimtrie/chain/repo.go
Roy Lee 6828cf5e36 [lbry] claimtrie: import current snapshot
Sync to tip

Co-authored-by: Brannon King <countprimes@gmail.com>
2022-05-23 23:53:30 -07:00

11 lines
215 B
Go

package chain
import "github.com/lbryio/lbcd/claimtrie/change"
type Repo interface {
Save(height int32, changes []change.Change) error
Load(height int32) ([]change.Change, error)
Close() error
Flush() error
}