mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-09-13 13:00:10 +00:00
17 lines
507 B
Go
17 lines
507 B
Go
package appmessage
|
|
|
|
// MsgUnexpectedPruningPoint represents a kaspa UnexpectedPruningPoint message
|
|
type MsgUnexpectedPruningPoint struct {
|
|
baseMessage
|
|
}
|
|
|
|
// Command returns the protocol command string for the message
|
|
func (msg *MsgUnexpectedPruningPoint) Command() MessageCommand {
|
|
return CmdUnexpectedPruningPoint
|
|
}
|
|
|
|
// NewMsgUnexpectedPruningPoint returns a new kaspa UnexpectedPruningPoint message
|
|
func NewMsgUnexpectedPruningPoint() *MsgUnexpectedPruningPoint {
|
|
return &MsgUnexpectedPruningPoint{}
|
|
}
|