File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
mithril-aggregator/src/services Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -165,18 +165,18 @@ impl MessageService for MithrilMessageService {
165165 . map ( |_| epoch_service. current_cardano_transactions_signing_config ( ) )
166166 . transpose ( ) ?
167167 . cloned ( ) ;
168- let next_cardano_transactions_signing_config = cardano_transactions_discriminant
169- . map ( |_| epoch_service. next_cardano_transactions_signing_config ( ) )
170- . transpose ( ) ?
171- . cloned ( ) ;
168+ // let next_cardano_transactions_signing_config = cardano_transactions_discriminant
169+ // .map(|_| epoch_service.next_cardano_transactions_signing_config())
170+ // .transpose()?
171+ // .cloned();
172172
173173 let epoch_settings_message = EpochSettingsMessage {
174174 epoch,
175175 signer_registration_protocol_parameters,
176176 current_signers : SignerMessagePart :: from_signers ( current_signers. to_vec ( ) ) ,
177177 next_signers : SignerMessagePart :: from_signers ( next_signers. to_vec ( ) ) ,
178178 cardano_transactions_signing_config,
179- next_cardano_transactions_signing_config,
179+ next_cardano_transactions_signing_config : None ,
180180 } ;
181181
182182 Ok ( epoch_settings_message)
You can’t perform that action at this time.
0 commit comments