forked from TrueCloudLab/neoneo-go
28908aa3cf
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
29 lines
855 B
Go
29 lines
855 B
Go
package consensus
|
|
|
|
import (
|
|
"github.com/nspcc-dev/dbft/payload"
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
)
|
|
|
|
// recoveryRequest represents dBFT RecoveryRequest message.
|
|
type recoveryRequest struct {
|
|
timestamp uint64
|
|
}
|
|
|
|
var _ payload.RecoveryRequest = (*recoveryRequest)(nil)
|
|
|
|
// DecodeBinary implements the io.Serializable interface.
|
|
func (m *recoveryRequest) DecodeBinary(r *io.BinReader) {
|
|
m.timestamp = r.ReadU64LE()
|
|
}
|
|
|
|
// EncodeBinary implements the io.Serializable interface.
|
|
func (m *recoveryRequest) EncodeBinary(w *io.BinWriter) {
|
|
w.WriteU64LE(m.timestamp)
|
|
}
|
|
|
|
// Timestamp implements the payload.RecoveryRequest interface.
|
|
func (m *recoveryRequest) Timestamp() uint64 { return m.timestamp * nsInMs }
|
|
|
|
// SetTimestamp implements the payload.RecoveryRequest interface.
|
|
func (m *recoveryRequest) SetTimestamp(ts uint64) { m.timestamp = ts / nsInMs }
|