mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-02 09: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.
30 lines
683 B
Go
30 lines
683 B
Go
package payload
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/wire/command"
|
|
)
|
|
|
|
//GetAddrMessage represents a GetAddress message on the neo-network
|
|
type GetAddrMessage struct{}
|
|
|
|
// NewGetAddrMessage returns a GetAddrMessage object
|
|
func NewGetAddrMessage() (*GetAddrMessage, error) {
|
|
return &GetAddrMessage{}, nil
|
|
}
|
|
|
|
// DecodePayload Implements Messager interface
|
|
func (v *GetAddrMessage) DecodePayload(r io.Reader) error {
|
|
return nil
|
|
}
|
|
|
|
// EncodePayload Implements messager interface
|
|
func (v *GetAddrMessage) EncodePayload(w io.Writer) error {
|
|
return nil
|
|
}
|
|
|
|
// Command Implements messager interface
|
|
func (v *GetAddrMessage) Command() command.Type {
|
|
return command.GetAddr
|
|
}
|