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.
18 lines
404 B
Go
18 lines
404 B
Go
package payload
|
|
|
|
import (
|
|
"github.com/CityOfZion/neo-go/pkg/wire/command"
|
|
)
|
|
|
|
// GetDataMessage represents a GetData message on the neo-network
|
|
type GetDataMessage struct {
|
|
*InvMessage
|
|
}
|
|
|
|
//NewGetDataMessage returns a GetDataMessage object
|
|
func NewGetDataMessage(typ InvType) (*GetDataMessage, error) {
|
|
getData, err := newAbstractInv(typ, command.GetData)
|
|
return &GetDataMessage{
|
|
getData,
|
|
}, err
|
|
}
|