mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-07 08:52:54 +00:00
move log
This commit is contained in:
@@ -504,14 +504,14 @@ pub async fn fill_in_aggregation_proofs<T: SlotClock + 'static, E: EthSpec>(
|
|||||||
current_slot: Slot,
|
current_slot: Slot,
|
||||||
pre_compute_slot: Slot,
|
pre_compute_slot: Slot,
|
||||||
) {
|
) {
|
||||||
// Generate selection proofs for each validator at each slot, one slot at a time.
|
|
||||||
for slot in (current_slot.as_u64()..=pre_compute_slot.as_u64()).map(Slot::new) {
|
|
||||||
debug!(
|
debug!(
|
||||||
period = sync_committee_period,
|
period = sync_committee_period,
|
||||||
%current_slot,
|
%current_slot,
|
||||||
%pre_compute_slot,
|
%pre_compute_slot,
|
||||||
"Calculating sync selection proofs"
|
"Calculating sync selection proofs"
|
||||||
);
|
);
|
||||||
|
// Generate selection proofs for each validator at each slot, one slot at a time.
|
||||||
|
for slot in (current_slot.as_u64()..=pre_compute_slot.as_u64()).map(Slot::new) {
|
||||||
if !duties_service.distributed {
|
if !duties_service.distributed {
|
||||||
// For non-distributed mode
|
// For non-distributed mode
|
||||||
let mut validator_proofs = vec![];
|
let mut validator_proofs = vec![];
|
||||||
|
|||||||
Reference in New Issue
Block a user