mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* Reintroduce isSynced into the GetBlockTemplate response. * Add a warning for when kaspad is not synced. * Rephrase a log.
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
package appmessage
|
|
|
|
// GetBlockTemplateRequestMessage is an appmessage corresponding to
|
|
// its respective RPC message
|
|
type GetBlockTemplateRequestMessage struct {
|
|
baseMessage
|
|
PayAddress string
|
|
}
|
|
|
|
// Command returns the protocol command string for the message
|
|
func (msg *GetBlockTemplateRequestMessage) Command() MessageCommand {
|
|
return CmdGetBlockTemplateRequestMessage
|
|
}
|
|
|
|
// NewGetBlockTemplateRequestMessage returns a instance of the message
|
|
func NewGetBlockTemplateRequestMessage(payAddress string) *GetBlockTemplateRequestMessage {
|
|
return &GetBlockTemplateRequestMessage{
|
|
PayAddress: payAddress,
|
|
}
|
|
}
|
|
|
|
// GetBlockTemplateResponseMessage is an appmessage corresponding to
|
|
// its respective RPC message
|
|
type GetBlockTemplateResponseMessage struct {
|
|
baseMessage
|
|
MsgBlock *MsgBlock
|
|
IsSynced bool
|
|
|
|
Error *RPCError
|
|
}
|
|
|
|
// Command returns the protocol command string for the message
|
|
func (msg *GetBlockTemplateResponseMessage) Command() MessageCommand {
|
|
return CmdGetBlockTemplateResponseMessage
|
|
}
|
|
|
|
// NewGetBlockTemplateResponseMessage returns a instance of the message
|
|
func NewGetBlockTemplateResponseMessage(msgBlock *MsgBlock, isSynced bool) *GetBlockTemplateResponseMessage {
|
|
return &GetBlockTemplateResponseMessage{
|
|
MsgBlock: msgBlock,
|
|
IsSynced: isSynced,
|
|
}
|
|
}
|