File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ use tracing::info;
17
17
18
18
use clap:: Parser ;
19
19
use timeboost:: config:: { CERTIFIER_PORT_OFFSET , DECRYPTER_PORT_OFFSET , NodeConfig } ;
20
- use timeboost:: types:: UNKNOWN_COMMITTEE_ID ;
21
20
use timeboost_utils:: types:: logging;
22
21
use tracing:: warn;
23
22
@@ -134,7 +133,7 @@ async fn main() -> Result<()> {
134
133
135
134
let sailfish_committee = {
136
135
let c = Committee :: new (
137
- UNKNOWN_COMMITTEE_ID ,
136
+ cli . committee_id ,
138
137
sailfish_peer_hosts_and_keys
139
138
. iter ( )
140
139
. enumerate ( )
@@ -145,7 +144,7 @@ async fn main() -> Result<()> {
145
144
146
145
let decrypt_committee = {
147
146
let c = Committee :: new (
148
- UNKNOWN_COMMITTEE_ID ,
147
+ cli . committee_id ,
149
148
decrypt_peer_hosts_and_keys
150
149
. iter ( )
151
150
. enumerate ( )
@@ -156,7 +155,7 @@ async fn main() -> Result<()> {
156
155
157
156
let certifier_committee = {
158
157
let c = Committee :: new (
159
- UNKNOWN_COMMITTEE_ID ,
158
+ cli . committee_id ,
160
159
certifier_peer_hosts_and_keys
161
160
. iter ( )
162
161
. enumerate ( )
You can’t perform that action at this time.
0 commit comments