2019-02-25 22:44:14 +00:00
|
|
|
package payload
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/wire/command"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/wire/util"
|
|
|
|
)
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// GetBlocksMessage represnts a GetBlocks message on the neo-network
|
2019-02-25 22:44:14 +00:00
|
|
|
type GetBlocksMessage struct {
|
|
|
|
*GetHeadersMessage
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// NewGetBlocksMessage returns a GetBlocksMessage object
|
2019-02-25 22:44:14 +00:00
|
|
|
func NewGetBlocksMessage(start []util.Uint256, stop util.Uint256) (*GetBlocksMessage, error) {
|
|
|
|
GetHeaders, err := newAbstractGetHeaders(start, stop, command.GetBlocks)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &GetBlocksMessage{
|
|
|
|
GetHeaders,
|
|
|
|
}, nil
|
|
|
|
|
|
|
|
}
|