mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-28 00:03:39 +00:00
22 lines
711 B
Go
22 lines
711 B
Go
package appmessage
|
|
|
|
// MsgDoneBlocksWithTrustedData implements the Message interface and represents a c4ex
|
|
// DoneBlocksWithTrustedData message
|
|
//
|
|
// This message has no payload.
|
|
type MsgDoneBlocksWithTrustedData struct {
|
|
baseMessage
|
|
}
|
|
|
|
// Command returns the protocol command string for the message. This is part
|
|
// of the Message interface implementation.
|
|
func (msg *MsgDoneBlocksWithTrustedData) Command() MessageCommand {
|
|
return CmdDoneBlocksWithTrustedData
|
|
}
|
|
|
|
// NewMsgDoneBlocksWithTrustedData returns a new c4ex DoneBlocksWithTrustedData message that conforms to the
|
|
// Message interface.
|
|
func NewMsgDoneBlocksWithTrustedData() *MsgDoneBlocksWithTrustedData {
|
|
return &MsgDoneBlocksWithTrustedData{}
|
|
}
|