2019-02-25 22:44:14 +00:00
|
|
|
package payload
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/wire/util"
|
|
|
|
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/wire/command"
|
|
|
|
)
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// BlockMessage represents a block message on the neo-network
|
2019-02-25 22:44:14 +00:00
|
|
|
type BlockMessage struct {
|
|
|
|
Block
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// NewBlockMessage will return a block message object
|
2019-02-25 22:44:14 +00:00
|
|
|
func NewBlockMessage() (*BlockMessage, error) {
|
|
|
|
return &BlockMessage{}, nil
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// DecodePayload Implements Messager interface
|
2019-02-25 22:44:14 +00:00
|
|
|
func (b *BlockMessage) DecodePayload(r io.Reader) error {
|
|
|
|
br := &util.BinReader{R: r}
|
|
|
|
b.Block.DecodePayload(br)
|
|
|
|
return br.Err
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// EncodePayload Implements messager interface
|
2019-02-25 22:44:14 +00:00
|
|
|
func (b *BlockMessage) EncodePayload(w io.Writer) error {
|
|
|
|
bw := &util.BinWriter{W: w}
|
|
|
|
b.Block.EncodePayload(bw)
|
|
|
|
return bw.Err
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
// Command Implements messager interface
|
|
|
|
func (b *BlockMessage) Command() command.Type {
|
2019-02-25 22:44:14 +00:00
|
|
|
return command.Block
|
|
|
|
}
|