forked from TrueCloudLab/neoneo-go
28908aa3cf
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
44 lines
1 KiB
Go
44 lines
1 KiB
Go
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 {
|
|
*block.Header
|
|
TxCount int
|
|
Hashes []util.Uint256
|
|
Flags []byte
|
|
}
|
|
|
|
// DecodeBinary implements the Serializable interface.
|
|
func (m *MerkleBlock) DecodeBinary(br *io.BinReader) {
|
|
m.Header = &block.Header{}
|
|
m.Header.DecodeBinary(br)
|
|
|
|
txCount := int(br.ReadVarUint())
|
|
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 the Serializable interface.
|
|
func (m *MerkleBlock) EncodeBinary(bw *io.BinWriter) {
|
|
m.Header.EncodeBinary(bw)
|
|
|
|
bw.WriteVarUint(uint64(m.TxCount))
|
|
bw.WriteArray(m.Hashes)
|
|
bw.WriteVarBytes(m.Flags)
|
|
}
|