mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-29 00:23:14 +00:00
9 lines
257 B
Go
9 lines
257 B
Go
package model
|
|
|
|
import "github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
|
|
// HeadersSelectedTipManager manages the state of the headers selected tip
|
|
type HeadersSelectedTipManager interface {
|
|
AddHeaderTip(hash *externalapi.DomainHash) error
|
|
}
|