2018-03-17 11:53:21 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-09-16 09:18:13 +00:00
|
|
|
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/io"
|
2018-03-17 11:53:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Header holds the head info of a block.
|
|
|
|
type Header struct {
|
|
|
|
// Base of the block.
|
|
|
|
BlockBase
|
2019-10-22 14:56:03 +00:00
|
|
|
// Padding that is fixed to 0.
|
2018-03-17 11:53:21 +00:00
|
|
|
_ uint8
|
|
|
|
}
|
|
|
|
|
2019-09-16 16:31:49 +00:00
|
|
|
// DecodeBinary implements Serializable interface.
|
|
|
|
func (h *Header) DecodeBinary(r *io.BinReader) {
|
|
|
|
h.BlockBase.DecodeBinary(r)
|
2018-03-17 11:53:21 +00:00
|
|
|
|
|
|
|
var padding uint8
|
2019-09-16 09:18:13 +00:00
|
|
|
r.ReadLE(&padding)
|
2019-01-25 11:20:35 +00:00
|
|
|
|
2018-03-17 11:53:21 +00:00
|
|
|
if padding != 0 {
|
2019-09-16 16:31:49 +00:00
|
|
|
r.Err = fmt.Errorf("format error: padding must equal 0 got %d", padding)
|
2018-03-17 11:53:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// EncodeBinary implements Serializable interface.
|
2019-09-16 16:31:49 +00:00
|
|
|
func (h *Header) EncodeBinary(w *io.BinWriter) {
|
2019-09-16 09:18:13 +00:00
|
|
|
h.BlockBase.EncodeBinary(w)
|
|
|
|
w.WriteLE(uint8(0))
|
2018-03-17 11:53:21 +00:00
|
|
|
}
|