mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-24 15:56:42 +00:00

* 1) Calculate pruning point incrementally 2) Add IsValidPruningPoint to pruning manager and consensus 3) Use reachability children for selected child iterator * Add request IBD root hash flow * Fix UpdatePruningPointByVirtual and IsValidPruningPoint * Regenerate messages.pb.go * Make the pruning point the earliest chain block with finality interval higher than the previous pruning point * Fix merge errors
23 lines
699 B
Go
23 lines
699 B
Go
package appmessage
|
|
|
|
// MsgIBDRootNotFound implements the Message interface and represents a kaspa
|
|
// IBDRootNotFound message. It is used to notify the IBD root that was requested
|
|
// by other peer was not found.
|
|
//
|
|
// This message has no payload.
|
|
type MsgIBDRootNotFound struct {
|
|
baseMessage
|
|
}
|
|
|
|
// Command returns the protocol command string for the message. This is part
|
|
// of the Message interface implementation.
|
|
func (msg *MsgIBDRootNotFound) Command() MessageCommand {
|
|
return CmdIBDRootNotFound
|
|
}
|
|
|
|
// NewMsgIBDRootNotFound returns a new kaspa IBDRootNotFound message that conforms to the
|
|
// Message interface.
|
|
func NewMsgIBDRootNotFound() *MsgIBDRootNotFound {
|
|
return &MsgIBDRootNotFound{}
|
|
}
|