mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-09-13 13:00:10 +00:00

* [NOD-1225] Rename wire to domainmessage * [NOD-1225] Get rid of references to package wire in the code, and get rid of InvType
34 lines
1.0 KiB
Go
34 lines
1.0 KiB
Go
// Copyright (c) 2013-2016 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package domainmessage
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/util/daghash"
|
|
)
|
|
|
|
// MsgRequestIBDBlocks implements the Message interface and represents a kaspa
|
|
// RequestIBDBlocks message. It is used to request a list of blocks starting after the
|
|
// low hash and until the high hash.
|
|
type MsgRequestIBDBlocks struct {
|
|
LowHash *daghash.Hash
|
|
HighHash *daghash.Hash
|
|
}
|
|
|
|
// Command returns the protocol command string for the message. This is part
|
|
// of the Message interface implementation.
|
|
func (msg *MsgRequestIBDBlocks) Command() MessageCommand {
|
|
return CmdRequestIBDBlocks
|
|
}
|
|
|
|
// NewMsgRequstIBDBlocks returns a new kaspa RequestIBDBlocks message that conforms to the
|
|
// Message interface using the passed parameters and defaults for the remaining
|
|
// fields.
|
|
func NewMsgRequstIBDBlocks(lowHash, highHash *daghash.Hash) *MsgRequestIBDBlocks {
|
|
return &MsgRequestIBDBlocks{
|
|
LowHash: lowHash,
|
|
HighHash: highHash,
|
|
}
|
|
}
|