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