2019-02-25 22:44:14 +00:00
|
|
|
package payload
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/wire/command"
|
|
|
|
)
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// GetMempool represents a GetMempool message on the neo-network
|
2019-02-25 22:44:14 +00:00
|
|
|
type GetMempool struct{}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
//NewGetMempool returns a GetMempool message
|
2019-02-25 22:44:14 +00:00
|
|
|
func NewGetMempool() (*GetMempool, error) {
|
|
|
|
return &GetMempool{}, nil
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// DecodePayload Implements Messager interface
|
2019-02-25 22:44:14 +00:00
|
|
|
func (v *GetMempool) DecodePayload(r io.Reader) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// EncodePayload Implements messager interface
|
2019-02-25 22:44:14 +00:00
|
|
|
func (v *GetMempool) EncodePayload(w io.Writer) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// Command Implements messager interface
|
2019-02-25 22:44:14 +00:00
|
|
|
func (v *GetMempool) Command() command.Type {
|
|
|
|
return command.Mempool
|
|
|
|
}
|