2020-01-14 12:32:07 +00:00
|
|
|
package block
|
2018-03-17 11:53:21 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-09-16 09:18:13 +00:00
|
|
|
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/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.
|
2020-01-15 08:29:50 +00:00
|
|
|
Base
|
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) {
|
2020-01-15 08:29:50 +00:00
|
|
|
h.Base.DecodeBinary(r)
|
2018-03-17 11:53:21 +00:00
|
|
|
|
2019-12-06 15:37:46 +00:00
|
|
|
padding := []byte{0}
|
|
|
|
r.ReadBytes(padding)
|
2019-01-25 11:20:35 +00:00
|
|
|
|
2019-12-06 15:37:46 +00:00
|
|
|
if padding[0] != 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) {
|
2020-01-15 08:29:50 +00:00
|
|
|
h.Base.EncodeBinary(w)
|
2019-12-06 15:22:21 +00:00
|
|
|
w.WriteBytes([]byte{0})
|
2018-03-17 11:53:21 +00:00
|
|
|
}
|