neoneo-go/pkg/network/payload/merkleblock.go

45 lines
1,018 B
Go
Raw Normal View History

package payload
import (
"errors"
"github.com/nspcc-dev/neo-go/pkg/core/block"
"github.com/nspcc-dev/neo-go/pkg/io"
"github.com/nspcc-dev/neo-go/pkg/util"
)
// MerkleBlock represents a merkle block packet payload.
type MerkleBlock struct {
2021-03-01 13:44:47 +00:00
*block.Header
TxCount int
Hashes []util.Uint256
Flags []byte
}
// DecodeBinary implements Serializable interface.
func (m *MerkleBlock) DecodeBinary(br *io.BinReader) {
m.Header = &block.Header{}
2021-03-01 13:44:47 +00:00
m.Header.DecodeBinary(br)
txCount := int(br.ReadVarUint())
2021-03-01 13:49:24 +00:00
if txCount > block.MaxTransactionsPerBlock {
br.Err = block.ErrMaxContentsPerBlock
return
}
m.TxCount = txCount
br.ReadArray(&m.Hashes, m.TxCount)
if txCount != len(m.Hashes) {
br.Err = errors.New("invalid tx count")
}
m.Flags = br.ReadVarBytes((txCount + 7) / 8)
}
// EncodeBinary implements Serializable interface.
func (m *MerkleBlock) EncodeBinary(bw *io.BinWriter) {
2021-03-01 13:44:47 +00:00
m.Header.EncodeBinary(bw)
bw.WriteVarUint(uint64(m.TxCount))
bw.WriteArray(m.Hashes)
bw.WriteVarBytes(m.Flags)
}