11 lines
217 B
Go
11 lines
217 B
Go
|
package chain
|
||
|
|
||
|
import "github.com/btcsuite/btcd/claimtrie/change"
|
||
|
|
||
|
type Repo interface {
|
||
|
Save(height int32, changes []change.Change) error
|
||
|
Load(height int32) ([]change.Change, error)
|
||
|
Close() error
|
||
|
Flush() error
|
||
|
}
|