forked from TrueCloudLab/neoneo-go
_pkg.dev: drop mblock wrapper
No use for us.
This commit is contained in:
parent
17679c3b94
commit
45d94ee8c6
1 changed files with 0 additions and 38 deletions
|
@ -1,38 +0,0 @@
|
||||||
package payload
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
|
|
||||||
"github.com/CityOfZion/neo-go/pkg/wire/util"
|
|
||||||
|
|
||||||
"github.com/CityOfZion/neo-go/pkg/wire/command"
|
|
||||||
)
|
|
||||||
|
|
||||||
// BlockMessage represents a block message on the neo-network
|
|
||||||
type BlockMessage struct {
|
|
||||||
Block
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewBlockMessage will return a block message object
|
|
||||||
func NewBlockMessage() (*BlockMessage, error) {
|
|
||||||
return &BlockMessage{}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// DecodePayload Implements Messager interface
|
|
||||||
func (b *BlockMessage) DecodePayload(r io.Reader) error {
|
|
||||||
br := &util.BinReader{R: r}
|
|
||||||
b.Block.DecodePayload(br)
|
|
||||||
return br.Err
|
|
||||||
}
|
|
||||||
|
|
||||||
// EncodePayload Implements messager interface
|
|
||||||
func (b *BlockMessage) EncodePayload(w io.Writer) error {
|
|
||||||
bw := &util.BinWriter{W: w}
|
|
||||||
b.Block.EncodePayload(bw)
|
|
||||||
return bw.Err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Command Implements messager interface
|
|
||||||
func (b *BlockMessage) Command() command.Type {
|
|
||||||
return command.Block
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue