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