mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-20 13:56:45 +00:00

* Send peers the hash of the virtual selected parent once connection is established. * Add a log to SendVirtualSelectedParentInv. * Fix TestIBDWithPruning. * Fix TestIBDWithPruning better and signal from the IBD syncer to the IBD syncee that the DAG is split amongst them. * Fix TestVirtualSelectedParentChain. * Add comments.
17 lines
618 B
Go
17 lines
618 B
Go
package appmessage
|
|
|
|
// MsgIBDBlockLocatorHighestHashNotFound represents a kaspa BlockLocatorHighestHashNotFound message
|
|
type MsgIBDBlockLocatorHighestHashNotFound struct {
|
|
baseMessage
|
|
}
|
|
|
|
// Command returns the protocol command string for the message
|
|
func (msg *MsgIBDBlockLocatorHighestHashNotFound) Command() MessageCommand {
|
|
return CmdIBDBlockLocatorHighestHashNotFound
|
|
}
|
|
|
|
// NewMsgIBDBlockLocatorHighestHashNotFound returns a new IBDBlockLocatorHighestHashNotFound message
|
|
func NewMsgIBDBlockLocatorHighestHashNotFound() *MsgIBDBlockLocatorHighestHashNotFound {
|
|
return &MsgIBDBlockLocatorHighestHashNotFound{}
|
|
}
|