mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-23 07:16:47 +00:00
10 lines
280 B
Go
10 lines
280 B
Go
package model
|
|
|
|
import "github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
|
|
// HeaderTipsManager manages the state of the header tips
|
|
type HeaderTipsManager interface {
|
|
AddHeaderTip(hash *externalapi.DomainHash) error
|
|
SelectedTip() (*externalapi.DomainHash, error)
|
|
}
|