You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR adds a new methods in the BLS Aggregator Service.
We should create a struct to store task information such as logger, task_index, aggregated_response_sender, current_aggregated_response, etc. (Check handle_task_expired params)
The following methods receives a large number of parameters, which is why we’re using #[allow(clippy::too_many_arguments)].
loop_task_aggregator
handle_new_signature
build_aggregated_response
The idea is to create a new struct to encapsulate all these parameters.
The text was updated successfully, but these errors were encountered:
damiramirez
changed the title
Wrap handle_task_expired function parameters in a struct
Wrap method parameters in a struct in the BLS Aggregator Service
Mar 18, 2025
PR adds a new methods in the BLS Aggregator Service.
logger
,task_index
,aggregated_response_sender
,current_aggregated_response
, etc. (Checkhandle_task_expired
params)The following methods receives a large number of parameters, which is why we’re using
#[allow(clippy::too_many_arguments)]
.loop_task_aggregator
handle_new_signature
build_aggregated_response
The idea is to create a new struct to encapsulate all these parameters.
The text was updated successfully, but these errors were encountered: