mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-02 19:45:50 +00:00
ddd1d92ff1
The idea here is to preserve the history of `dev` branch development and its code when merging with the `master`. Later this code could be moved into the masters code where appropriate.
24 lines
564 B
Go
24 lines
564 B
Go
package payload
|
|
|
|
import (
|
|
"github.com/CityOfZion/neo-go/pkg/wire/command"
|
|
"github.com/CityOfZion/neo-go/pkg/wire/util"
|
|
)
|
|
|
|
// GetBlocksMessage represnts a GetBlocks message on the neo-network
|
|
type GetBlocksMessage struct {
|
|
*GetHeadersMessage
|
|
}
|
|
|
|
// NewGetBlocksMessage returns a GetBlocksMessage object
|
|
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
|
|
|
|
}
|