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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
use codec::{Decode, Encode};
use governance_os_support::impl_enum_default;
#[cfg(feature = "std")]
use serde::{Deserialize, Serialize};
use sp_runtime::{
traits::{IntegerSquareRoot, Saturating},
RuntimeDebug,
};
use sp_std::vec::Vec;
#[derive(Encode, Decode, Clone, PartialEq, Eq, RuntimeDebug, Default)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
pub struct VotingParameters<BlockNumber, CurrencyId> {
pub ttl: BlockNumber,
pub voting_currency: CurrencyId,
pub min_quorum: u32,
pub min_participation: u32,
pub vote_counting_strategy: VoteCountingStrategy,
}
#[derive(Encode, Decode, Clone, PartialEq, Eq, RuntimeDebug, Copy)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
pub enum VoteCountingStrategy {
Simple,
Quadratic,
}
impl_enum_default!(VoteCountingStrategy, Simple);
#[derive(Encode, Decode, Clone, PartialEq, Eq, RuntimeDebug)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
pub struct VoteData<Balance> {
pub in_support: bool,
pub power: Balance,
}
#[derive(Encode, Decode, Clone, PartialEq, Eq, RuntimeDebug, Default)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
pub struct ProposalState<Balance, BlockNumber, CurrencyId, LockIdentifier> {
pub parameters: VotingParameters<BlockNumber, CurrencyId>,
pub total_favorable: Balance,
pub total_against: Balance,
pub locks: Vec<LockIdentifier>,
pub created_on: BlockNumber,
}
impl<Balance: Saturating + Copy + IntegerSquareRoot, BlockNumber, CurrencyId, LockIdentifier>
ProposalState<Balance, BlockNumber, CurrencyId, LockIdentifier>
{
pub fn record_vote(&mut self, favorable: bool, power: Balance) {
if favorable {
self.total_favorable = self.total_favorable.saturating_add(self.real_power(power));
} else {
self.total_against = self.total_against.saturating_add(self.real_power(power));
}
}
pub fn unrecord_vote(&mut self, favorable: bool, power: Balance) {
if favorable {
self.total_favorable = self.total_favorable.saturating_sub(self.real_power(power));
} else {
self.total_against = self.total_against.saturating_sub(self.real_power(power));
}
}
fn real_power(&self, power: Balance) -> Balance {
match self.parameters.vote_counting_strategy {
VoteCountingStrategy::Simple => power,
VoteCountingStrategy::Quadratic => {
power
.integer_sqrt_checked()
.expect("we are supposed to use uints and thus the value cannot be negative")
}
}
}
}