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