mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-28 00:03:39 +00:00
17 lines
617 B
Go
17 lines
617 B
Go
package appmessage
|
|
|
|
// MsgIBDBlockLocatorHighestHashNotFound represents a c4ex 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{}
|
|
}
|