1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
use crate::vote::Vote;
use serde::{Deserialize, Serialize};
use std::fmt;
#[derive(Debug, Deserialize, Eq, PartialEq, Serialize, Clone, Default)]
pub struct SafetyData {
pub epoch: u64,
pub last_voted_round: u64,
pub preferred_round: u64,
#[serde(default)]
pub one_chain_round: u64,
pub last_vote: Option<Vote>,
}
impl SafetyData {
pub fn new(
epoch: u64,
last_voted_round: u64,
preferred_round: u64,
one_chain_round: u64,
last_vote: Option<Vote>,
) -> Self {
Self {
epoch,
last_voted_round,
preferred_round,
one_chain_round,
last_vote,
}
}
}
impl fmt::Display for SafetyData {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(
f,
"SafetyData: [epoch: {}, last_voted_round: {}, preferred_round: {}, one_chain_round: {}]",
self.epoch, self.last_voted_round, self.preferred_round, self.one_chain_round
)
}
}
#[test]
fn test_safety_data_upgrade() {
#[derive(Debug, Deserialize, Eq, PartialEq, Serialize, Clone, Default)]
struct OldSafetyData {
pub epoch: u64,
pub last_voted_round: u64,
pub preferred_round: u64,
pub last_vote: Option<Vote>,
}
let old_data = OldSafetyData {
epoch: 1,
last_voted_round: 10,
preferred_round: 100,
last_vote: None,
};
let value = serde_json::to_value(&old_data).unwrap();
let _: SafetyData = serde_json::from_value(value).unwrap();
}