708b439f4a
Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
33 lines
911 B
Go
33 lines
911 B
Go
package consensus
|
|
|
|
import (
|
|
"github.com/nspcc-dev/dbft"
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
)
|
|
|
|
// changeView represents dBFT ChangeView message.
|
|
type changeView struct {
|
|
newViewNumber byte
|
|
timestamp uint64
|
|
reason dbft.ChangeViewReason
|
|
}
|
|
|
|
var _ dbft.ChangeView = (*changeView)(nil)
|
|
|
|
// EncodeBinary implements the io.Serializable interface.
|
|
func (c *changeView) EncodeBinary(w *io.BinWriter) {
|
|
w.WriteU64LE(c.timestamp)
|
|
w.WriteB(byte(c.reason))
|
|
}
|
|
|
|
// DecodeBinary implements the io.Serializable interface.
|
|
func (c *changeView) DecodeBinary(r *io.BinReader) {
|
|
c.timestamp = r.ReadU64LE()
|
|
c.reason = dbft.ChangeViewReason(r.ReadB())
|
|
}
|
|
|
|
// NewViewNumber implements the payload.ChangeView interface.
|
|
func (c changeView) NewViewNumber() byte { return c.newViewNumber }
|
|
|
|
// Reason implements the payload.ChangeView interface.
|
|
func (c changeView) Reason() dbft.ChangeViewReason { return c.reason }
|