-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathrandomized_committee.rs
256 lines (221 loc) · 9.27 KB
/
randomized_committee.rs
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
// Copyright (c) 2021-2024 Espresso Systems (espressosys.com)
// This file is part of the HotShot repository.
// You should have received a copy of the MIT License
// along with the HotShot repository. If not, see <https://mit-license.org/>.
use std::{cmp::max, collections::BTreeMap, num::NonZeroU64};
use hotshot_types::{
drb::{
election::{generate_stake_cdf, select_randomized_leader, RandomizedCommittee},
DrbResult,
},
traits::{
election::Membership,
node_implementation::NodeType,
signature_key::{SignatureKey, StakeTableEntryType},
},
PeerConfig,
};
use hotshot_utils::anytrace::*;
use primitive_types::U256;
#[derive(Clone, Debug)]
/// The static committee election
pub struct Committee<T: NodeType> {
/// The nodes eligible for leadership.
/// NOTE: This is currently a hack because the DA leader needs to be the quorum
/// leader but without voting rights.
eligible_leaders: Vec<<T::SignatureKey as SignatureKey>::StakeTableEntry>,
/// The nodes on the committee and their stake
stake_table: Vec<<T::SignatureKey as SignatureKey>::StakeTableEntry>,
/// The nodes on the committee and their stake
da_stake_table: Vec<<T::SignatureKey as SignatureKey>::StakeTableEntry>,
/// Stake tables randomized with the DRB, used (only) for leader election
randomized_committee: RandomizedCommittee<<T::SignatureKey as SignatureKey>::StakeTableEntry>,
/// The nodes on the committee and their stake, indexed by public key
indexed_stake_table:
BTreeMap<T::SignatureKey, <T::SignatureKey as SignatureKey>::StakeTableEntry>,
/// The nodes on the committee and their stake, indexed by public key
indexed_da_stake_table:
BTreeMap<T::SignatureKey, <T::SignatureKey as SignatureKey>::StakeTableEntry>,
}
impl<TYPES: NodeType> Membership<TYPES> for Committee<TYPES> {
type Error = hotshot_utils::anytrace::Error;
/// Create a new election
fn new(
committee_members: Vec<PeerConfig<<TYPES as NodeType>::SignatureKey>>,
da_members: Vec<PeerConfig<<TYPES as NodeType>::SignatureKey>>,
) -> Self {
// For each eligible leader, get the stake table entry
let eligible_leaders: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry> =
committee_members
.iter()
.map(|member| member.stake_table_entry.clone())
.filter(|entry| entry.stake() > U256::zero())
.collect();
// For each member, get the stake table entry
let members: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry> =
committee_members
.iter()
.map(|member| member.stake_table_entry.clone())
.filter(|entry| entry.stake() > U256::zero())
.collect();
// For each member, get the stake table entry
let da_members: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry> = da_members
.iter()
.map(|member| member.stake_table_entry.clone())
.filter(|entry| entry.stake() > U256::zero())
.collect();
// Index the stake table by public key
let indexed_stake_table: BTreeMap<
TYPES::SignatureKey,
<TYPES::SignatureKey as SignatureKey>::StakeTableEntry,
> = members
.iter()
.map(|entry| (TYPES::SignatureKey::public_key(entry), entry.clone()))
.collect();
// Index the stake table by public key
let indexed_da_stake_table: BTreeMap<
TYPES::SignatureKey,
<TYPES::SignatureKey as SignatureKey>::StakeTableEntry,
> = da_members
.iter()
.map(|entry| (TYPES::SignatureKey::public_key(entry), entry.clone()))
.collect();
// We use a constant value of `[0u8; 32]` for the drb, since this is just meant to be used in tests
let randomized_committee = generate_stake_cdf(eligible_leaders.clone(), [0u8; 32]);
Self {
eligible_leaders,
stake_table: members,
da_stake_table: da_members,
randomized_committee,
indexed_stake_table,
indexed_da_stake_table,
}
}
/// Get the stake table for the current view
fn stake_table(
&self,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> Vec<<<TYPES as NodeType>::SignatureKey as SignatureKey>::StakeTableEntry> {
self.stake_table.clone()
}
/// Get the stake table for the current view
fn da_stake_table(
&self,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> Vec<<<TYPES as NodeType>::SignatureKey as SignatureKey>::StakeTableEntry> {
self.da_stake_table.clone()
}
/// Get all members of the committee for the current view
fn committee_members(
&self,
_view_number: <TYPES as NodeType>::View,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> std::collections::BTreeSet<<TYPES as NodeType>::SignatureKey> {
self.stake_table
.iter()
.map(TYPES::SignatureKey::public_key)
.collect()
}
/// Get all members of the committee for the current view
fn da_committee_members(
&self,
_view_number: <TYPES as NodeType>::View,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> std::collections::BTreeSet<<TYPES as NodeType>::SignatureKey> {
self.da_stake_table
.iter()
.map(TYPES::SignatureKey::public_key)
.collect()
}
/// Get all eligible leaders of the committee for the current view
fn committee_leaders(
&self,
_view_number: <TYPES as NodeType>::View,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> std::collections::BTreeSet<<TYPES as NodeType>::SignatureKey> {
self.eligible_leaders
.iter()
.map(TYPES::SignatureKey::public_key)
.collect()
}
/// Get the stake table entry for a public key
fn stake(
&self,
pub_key: &<TYPES as NodeType>::SignatureKey,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry> {
// Only return the stake if it is above zero
self.indexed_stake_table.get(pub_key).cloned()
}
/// Get the stake table entry for a public key
fn da_stake(
&self,
pub_key: &<TYPES as NodeType>::SignatureKey,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry> {
// Only return the stake if it is above zero
self.indexed_da_stake_table.get(pub_key).cloned()
}
/// Check if a node has stake in the committee
fn has_stake(
&self,
pub_key: &<TYPES as NodeType>::SignatureKey,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> bool {
self.indexed_stake_table
.get(pub_key)
.is_some_and(|x| x.stake() > U256::zero())
}
/// Check if a node has stake in the committee
fn has_da_stake(
&self,
pub_key: &<TYPES as NodeType>::SignatureKey,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> bool {
self.indexed_da_stake_table
.get(pub_key)
.is_some_and(|x| x.stake() > U256::zero())
}
// /// Get the network topic for the committee
// fn committee_topic(&self) -> Topic {
// self.committee_topic.clone()
// }
/// Index the vector of public keys with the current view number
fn lookup_leader(
&self,
view_number: <TYPES as NodeType>::View,
_epoch: Option<<TYPES as NodeType>::Epoch>,
) -> Result<TYPES::SignatureKey> {
let res = select_randomized_leader(&self.randomized_committee, *view_number);
Ok(TYPES::SignatureKey::public_key(&res))
}
/// Get the total number of nodes in the committee
fn total_nodes(&self, _epoch: Option<<TYPES as NodeType>::Epoch>) -> usize {
self.stake_table.len()
}
/// Get the total number of nodes in the committee
fn da_total_nodes(&self, _epoch: Option<<TYPES as NodeType>::Epoch>) -> usize {
self.da_stake_table.len()
}
/// Get the voting success threshold for the committee
fn success_threshold(&self, _epoch: Option<<TYPES as NodeType>::Epoch>) -> NonZeroU64 {
NonZeroU64::new(((self.stake_table.len() as u64 * 2) / 3) + 1).unwrap()
}
/// Get the voting success threshold for the committee
fn da_success_threshold(&self, _epoch: Option<<TYPES as NodeType>::Epoch>) -> NonZeroU64 {
NonZeroU64::new(((self.da_stake_table.len() as u64 * 2) / 3) + 1).unwrap()
}
/// Get the voting failure threshold for the committee
fn failure_threshold(&self, _epoch: Option<<TYPES as NodeType>::Epoch>) -> NonZeroU64 {
NonZeroU64::new(((self.stake_table.len() as u64) / 3) + 1).unwrap()
}
/// Get the voting upgrade threshold for the committee
fn upgrade_threshold(&self, _epoch: Option<<TYPES as NodeType>::Epoch>) -> NonZeroU64 {
NonZeroU64::new(max(
(self.stake_table.len() as u64 * 9) / 10,
((self.stake_table.len() as u64 * 2) / 3) + 1,
))
.unwrap()
}
fn add_drb_result(&mut self, _epoch: <TYPES as NodeType>::Epoch, _drb: DrbResult) {}
}