neoneo-go/pkg/consensus/recovery_request.go

30 lines
822 B
Go
Raw Normal View History

2019-11-08 15:40:21 +00:00
package consensus
2019-11-15 10:32:40 +00:00
import (
"github.com/CityOfZion/neo-go/pkg/io"
"github.com/nspcc-dev/dbft/payload"
)
2019-11-08 15:40:21 +00:00
// recoveryRequest represents dBFT RecoveryRequest message.
type recoveryRequest struct {
2019-11-15 10:32:40 +00:00
timestamp uint32
2019-11-08 15:40:21 +00:00
}
2019-11-15 10:32:40 +00:00
var _ payload.RecoveryRequest = (*recoveryRequest)(nil)
2019-11-08 15:40:21 +00:00
// DecodeBinary implements io.Serializable interface.
func (m *recoveryRequest) DecodeBinary(r *io.BinReader) {
m.timestamp = r.ReadU32LE()
2019-11-08 15:40:21 +00:00
}
// EncodeBinary implements io.Serializable interface.
func (m *recoveryRequest) EncodeBinary(w *io.BinWriter) {
w.WriteU32LE(m.timestamp)
2019-11-08 15:40:21 +00:00
}
2019-11-15 10:32:40 +00:00
// Timestamp implements payload.RecoveryRequest interface.
func (m *recoveryRequest) Timestamp() uint32 { return m.timestamp }
// SetTimestamp implements payload.RecoveryRequest interface.
func (m *recoveryRequest) SetTimestamp(ts uint32) { m.timestamp = ts }