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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
use std::{
    collections::{BTreeSet, HashMap, VecDeque},
    mem,
};

use massa_consensus_exports::{
    block_status::{BlockStatus, DiscardReason, HeaderOrBlock, StorageOrBlock},
    error::ConsensusError,
};
use massa_execution_exports::ExecutionBlockMetadata;
use massa_logging::massa_trace;
use massa_models::{
    active_block::ActiveBlock,
    address::Address,
    block_header::SecuredHeader,
    block_id::BlockId,
    clique::Clique,
    prehash::{PreHashMap, PreHashSet},
    slot::Slot,
    timeslots,
};
use massa_signature::PublicKey;
use massa_storage::Storage;
use massa_time::MassaTime;
use tracing::{debug, info};

use crate::state::{
    clique_computation::compute_max_cliques,
    verifications::{BlockCheckOutcome, HeaderCheckOutcome},
};

use super::ConsensusState;

/// All information necessary to add a block to the graph
pub(crate) struct BlockInfos {
    /// The block creator
    pub creator: PublicKey,
    /// The slot of the block
    pub slot: Slot,
    /// The list of the parents of the block (block_id, period) (one block per thread)
    pub parents_hash_period: Vec<(BlockId, u64)>,
    /// The list of the blocks that are incompatible with this block
    pub incompatibilities: PreHashSet<BlockId>,
    /// Number of incompatibilities this block inherit from his parents
    pub inherited_incompatibilities_count: usize,
    /// The storage can the block himself and his operations and endorsements
    pub storage: Storage,
    /// The fitness of the block
    pub fitness: u64,
}

impl ConsensusState {
    /// Acknowledge a set of items recursively and process them
    ///
    /// # Arguments:
    /// * `to_ack`: the set of items to acknowledge and process
    /// * `current_slot`: the current slot when this function is called
    ///
    /// # Returns:
    /// Success or error if an error happened during the processing of items
    pub fn rec_process(
        &mut self,
        mut to_ack: BTreeSet<(Slot, BlockId)>,
        current_slot: Option<Slot>,
    ) -> Result<(), ConsensusError> {
        // order processing by (slot, hash)
        while let Some((_slot, hash)) = to_ack.pop_first() {
            // When a slot and a block ID is processed through the `process` function, it is possible that it causes others blocks
            // to need processing as well. In this case the `process` function will return them and they will be added to
            // the `to_ack` vector to be processed in the future.
            to_ack.extend(self.process(hash, current_slot)?)
        }
        Ok(())
    }

    /// Acknowledge a single item, return a set of items to re-ack
    ///
    /// # Arguments:
    /// * `block_id`: the id of the block to acknowledge
    /// * `current_slot`: the current slot when this function is called
    ///
    /// # Returns:
    /// A list of items to re-ack and process or an error if the process of an item failed
    fn process(
        &mut self,
        block_id: BlockId,
        current_slot: Option<Slot>,
    ) -> Result<BTreeSet<(Slot, BlockId)>, ConsensusError> {
        // list items to reprocess
        let mut reprocess = BTreeSet::new();

        massa_trace!("consensus.block_graph.process", { "block_id": block_id });
        // control all the waiting states and try to get a valid block
        match self.blocks_state.get(&block_id) {
            None => return Ok(BTreeSet::new()), // disappeared before being processed: do nothing

            // discarded: do nothing
            Some(BlockStatus::Discarded { .. }) => {
                massa_trace!("consensus.block_graph.process.discarded", {
                    "block_id": block_id
                });
                return Ok(BTreeSet::new());
            }

            // already active: do nothing
            Some(BlockStatus::Active { .. }) => {
                massa_trace!("consensus.block_graph.process.active", {
                    "block_id": block_id
                });
                return Ok(BTreeSet::new());
            }

            // incoming header
            Some(BlockStatus::Incoming(HeaderOrBlock::Header(_))) => {
                massa_trace!("consensus.block_graph.process.incoming_header", {
                    "block_id": block_id
                });

                let new_state = if let Some(BlockStatus::Incoming(HeaderOrBlock::Header(header))) =
                    self.blocks_state.get(&block_id)
                {
                    self.convert_block_header(block_id, header.clone(), current_slot)
                } else {
                    panic!(
                        "inconsistency inside block statuses removing incoming header {}",
                        block_id
                    )
                };

                // remove header
                self.blocks_state
                    .transition_map(&block_id, |block_status, _| {
                        if let Some(BlockStatus::Incoming(HeaderOrBlock::Header(_header))) =
                            block_status
                        {
                            new_state
                        } else {
                            panic!(
                                "inconsistency inside block statuses removing incoming header {}",
                                block_id
                            )
                        }
                    });
                return Ok(BTreeSet::new());
            }

            // incoming block
            Some(BlockStatus::Incoming(HeaderOrBlock::Block { id: block_id, .. })) => {
                let block_id = *block_id;
                massa_trace!("consensus.block_graph.process.incoming_block", {
                    "block_id": block_id
                });
                let header_check_outcome =
                    if let Some(BlockStatus::Incoming(HeaderOrBlock::Block {
                        slot: _,
                        storage,
                        ..
                    })) = self.blocks_state.get(&block_id)
                    {
                        let stored_block = storage
                            .read_blocks()
                            .get(&block_id)
                            .cloned()
                            .expect("incoming block not found in storage");
                        let res = self.check_header(
                            &block_id,
                            &stored_block.content.header,
                            current_slot,
                        );
                        match &res {
                            HeaderCheckOutcome::Discard(reason) => {
                                self.maybe_note_attack_attempt(reason, &block_id)
                            }
                            _ => {
                                if self.detect_multistake(&stored_block.content.header) {
                                    return Ok(BTreeSet::new());
                                }
                            }
                        }
                        res
                    } else {
                        panic!(
                            "inconsistency inside block statuses removing incoming block {}",
                            block_id
                        )
                    };
                let mut block_infos = None;
                let sequence_number = self.blocks_state.sequence_counter();
                self.blocks_state
                    .transition_map(&block_id, |block_status, _| {
                        if let Some(BlockStatus::Incoming(HeaderOrBlock::Block {
                            slot,
                            storage,
                            ..
                        })) = block_status
                        {
                            let header = storage
                                .read_blocks()
                                .get(&block_id)
                                .cloned()
                                .expect("incoming block not found in storage")
                                .content
                                .header;
                            let new_state = match header_check_outcome {
                                HeaderCheckOutcome::Proceed {
                                    parents_hash_period,
                                    incompatibilities,
                                    inherited_incompatibilities_count,
                                    fitness,
                                } => Some(BlockCheckOutcome::BlockInfos(BlockInfos {
                                    creator: header.content_creator_pub_key,
                                    parents_hash_period,
                                    storage,
                                    slot,
                                    incompatibilities,
                                    inherited_incompatibilities_count,
                                    fitness,
                                })),
                                HeaderCheckOutcome::WaitForDependencies(dependencies) => {
                                    Some(BlockCheckOutcome::BlockStatus(
                                        BlockStatus::WaitingForDependencies {
                                            header_or_block: HeaderOrBlock::Block {
                                                id: block_id,
                                                slot,
                                                storage,
                                            },
                                            unsatisfied_dependencies: dependencies,
                                            sequence_number,
                                        },
                                    ))
                                }
                                HeaderCheckOutcome::WaitForSlot => {
                                    Some(BlockCheckOutcome::BlockStatus(
                                        BlockStatus::WaitingForSlot(HeaderOrBlock::Block {
                                            id: block_id,
                                            slot,
                                            storage,
                                        }),
                                    ))
                                }
                                HeaderCheckOutcome::Discard(reason) => {
                                    if reason == DiscardReason::Stale {
                                        self.new_stale_blocks.insert(
                                            block_id,
                                            (header.content_creator_address, header.content.slot),
                                        );
                                    }
                                    // discard
                                    Some(BlockCheckOutcome::BlockStatus(BlockStatus::Discarded {
                                        slot: header.content.slot,
                                        creator: header.content_creator_address,
                                        parents: header.content.parents,
                                        reason,
                                        sequence_number,
                                    }))
                                }
                            };
                            match new_state {
                                Some(BlockCheckOutcome::BlockInfos(infos)) => {
                                    block_infos = Some((
                                        infos.parents_hash_period.clone(),
                                        infos.slot,
                                        infos.incompatibilities,
                                        infos.inherited_incompatibilities_count,
                                    ));

                                    Some(BlockStatus::Active {
                                        a_block: Box::new(ActiveBlock {
                                            creator_address: Address::from_public_key(
                                                &infos.creator,
                                            ),
                                            parents: infos.parents_hash_period,
                                            descendants: PreHashSet::<BlockId>::default(),
                                            block_id,
                                            children: vec![
                                                Default::default();
                                                self.config.thread_count as usize
                                            ],
                                            is_final: false,
                                            slot: infos.slot,
                                            fitness: infos.fitness,
                                            same_thread_parent_creator: None, // added below in add_block_to_graph
                                        }),
                                        storage_or_block: StorageOrBlock::Storage(infos.storage),
                                    })
                                }
                                Some(BlockCheckOutcome::BlockStatus(status)) => Some(status),
                                None => None,
                            }
                        } else {
                            panic!(
                                "inconsistency inside block statuses removing incoming block {}",
                                block_id
                            )
                        }
                    });
                match block_infos {
                    Some(valid_block_infos) => {
                        if let Err(err) = self.add_block_to_graph(
                            block_id,
                            valid_block_infos.0,
                            valid_block_infos.1,
                            valid_block_infos.2,
                            valid_block_infos.3,
                        ) {
                            panic!("error adding block to graph: {:?}", err);
                        }
                    }
                    None => return Ok(BTreeSet::new()),
                }
            }

            Some(BlockStatus::WaitingForSlot(header_or_block)) => {
                massa_trace!("consensus.block_graph.process.waiting_for_slot", {
                    "block_id": block_id
                });
                let slot = header_or_block.get_slot();
                if Some(slot) > current_slot {
                    massa_trace!(
                        "consensus.block_graph.process.waiting_for_slot.in_the_future",
                        { "block_id": block_id }
                    );
                    // in the future: ignore
                    return Ok(BTreeSet::new());
                }
                // send back as incoming and ask for reprocess
                self.blocks_state
                    .transition_map(&block_id, |block_status, _| {
                        if let Some(BlockStatus::WaitingForSlot(header_or_block)) = block_status {
                            Some(BlockStatus::Incoming(header_or_block))
                        } else {
                            panic!(
                                "inconsistency inside block statuses removing waiting for slot {}",
                                block_id
                            )
                        }
                    });
                reprocess.insert((slot, block_id));
                return Ok(reprocess);
            }

            Some(BlockStatus::WaitingForDependencies {
                unsatisfied_dependencies,
                ..
            }) => {
                massa_trace!("consensus.block_graph.process.waiting_for_dependencies", {
                    "block_id": block_id
                });
                if !unsatisfied_dependencies.is_empty() {
                    // still has unsatisfied dependencies: ignore
                    return Ok(BTreeSet::new());
                }
                // send back as incoming and ask for reprocess
                self.blocks_state
                    .transition_map(&block_id, |block_status, _| {
                        if let Some(BlockStatus::WaitingForDependencies {
                            header_or_block, ..
                        }) = block_status
                        {
                            reprocess.insert((header_or_block.get_slot(), block_id));
                            Some(BlockStatus::Incoming(header_or_block))
                        } else {
                            panic!(
                                "inconsistency inside block statuses removing waiting for slot {}",
                                block_id
                            )
                        }
                    });
                return Ok(reprocess);
            }
        };

        // if the block was added, update linked dependencies and mark satisfied ones for recheck
        if let Some(BlockStatus::Active {
            storage_or_block: StorageOrBlock::Storage(storage),
            ..
        }) = self.blocks_state.get(&block_id)
        {
            massa_trace!("consensus.block_graph.process.is_active", {
                "block_id": block_id
            });
            self.to_propagate.insert(block_id, storage.clone());
            for itm_block_id in self
                .blocks_state
                .waiting_for_dependencies_blocks()
                .clone()
                .iter()
            {
                if let Some(BlockStatus::WaitingForDependencies {
                    header_or_block,
                    unsatisfied_dependencies,
                    ..
                }) = self.blocks_state.get_mut(itm_block_id)
                {
                    if unsatisfied_dependencies.remove(&block_id) {
                        // a dependency was satisfied: retry
                        reprocess.insert((header_or_block.get_slot(), *itm_block_id));
                    }
                }
            }
        }

        Ok(reprocess)
    }

    /// Add a block to the graph and update the cliques, the graph dependencies and incompatibilities
    ///
    /// # Arguments:
    /// * `add_block_id`: Block id of the block to add
    /// * `parents_hash_period`: Ids and periods of the parents of the block to add
    /// * `add_block_creator`: Creator of the block to add
    /// * `add_block_slot`: Slot of the block to add
    /// * `incomp`: Block ids of the blocks incompatible with the block to add
    /// * `fitness`: Fitness of the block to add
    /// * `storage`: Storage containing all the data of the block to add
    ///
    /// # Returns:
    /// Success or error if any steps failed
    #[allow(clippy::too_many_arguments)]
    fn add_block_to_graph(
        &mut self,
        add_block_id: BlockId,
        parents_hash_period: Vec<(BlockId, u64)>,
        add_block_slot: Slot,
        incomp: PreHashSet<BlockId>,
        inherited_incomp_count: usize,
    ) -> Result<(), ConsensusError> {
        massa_trace!("consensus.block_graph.add_block_to_graph", {
            "block_id": add_block_id
        });

        // add as child to parents
        // add as descendant to ancestors. Note: descendants are never removed.
        self.insert_parents_descendants(
            add_block_id,
            add_block_slot,
            parents_hash_period.iter().map(|(p_id, _)| *p_id).collect(),
        );

        // add incompatibilities to gi_head
        massa_trace!(
            "consensus.block_graph.add_block_to_graph.add_incompatibilities",
            {}
        );
        for incomp_h in incomp.iter() {
            self.gi_head
                .get_mut(incomp_h)
                .ok_or_else(|| {
                    ConsensusError::MissingBlock(format!(
                        "missing block when adding incomp to gi_head: {}",
                        incomp_h
                    ))
                })?
                .insert(add_block_id);
        }
        self.gi_head.insert(add_block_id, incomp.clone());

        // max cliques update
        massa_trace!(
            "consensus.block_graph.add_block_to_graph.max_cliques_update",
            {}
        );
        if incomp.len() == inherited_incomp_count {
            // clique optimization routine:
            //   the block only has incompatibilities inherited from its parents
            //   therefore it is not forking and can simply be added to the cliques it is compatible with
            self.max_cliques
                .iter_mut()
                .filter(|c| incomp.is_disjoint(&c.block_ids))
                .for_each(|c| {
                    c.block_ids.insert(add_block_id);
                });
        } else {
            // fully recompute max cliques
            massa_trace!(
                "consensus.block_graph.add_block_to_graph.clique_full_computing",
                { "hash": add_block_id }
            );
            let before = self.max_cliques.len();
            self.max_cliques = compute_max_cliques(&self.gi_head)
                .into_iter()
                .map(|c| Clique {
                    block_ids: c,
                    fitness: 0,
                    is_blockclique: false,
                })
                .collect();
            let after = self.max_cliques.len();
            if before != after {
                massa_trace!(
                    "consensus.block_graph.add_block_to_graph.clique_full_computing more than one clique",
                    { "cliques": self.max_cliques, "gi_head": self.gi_head }
                );
                // gi_head
                debug!(
                    "clique number went from {} to {} after adding {}",
                    before, after, add_block_id
                );
            }
        }

        // compute clique fitnesses and find blockclique
        massa_trace!("consensus.block_graph.add_block_to_graph.compute_clique_fitnesses_and_find_blockclique", {});
        // note: clique_fitnesses is pair (fitness, -hash_sum) where the second parameter is negative for sorting
        let position_blockclique = self.compute_fitness_find_blockclique(&add_block_id)?;

        // update best parents
        massa_trace!(
            "consensus.block_graph.add_block_to_graph.update_best_parents",
            {}
        );
        {
            let blockclique = &self.max_cliques[position_blockclique];

            // init best parents as latest_final_blocks_periods
            self.best_parents = self.latest_final_blocks_periods.clone();
            // for each blockclique block, set it as best_parent in its own thread
            // if its period is higher than the current best_parent in that thread
            for block_h in blockclique.block_ids.iter() {
                let b_slot = match self.blocks_state.get(block_h) {
                    Some(BlockStatus::Active { a_block, .. }) => a_block.slot,
                    _ => return Err(ConsensusError::ContainerInconsistency(format!("inconsistency inside block statuses updating best parents while adding {} - missing {}", add_block_id, block_h))),
                };
                if b_slot.period > self.best_parents[b_slot.thread as usize].1 {
                    self.best_parents[b_slot.thread as usize] = (*block_h, b_slot.period);
                }
            }
        }

        // list stale blocks
        massa_trace!(
            "consensus.block_graph.add_block_to_graph.list_stale_blocks",
            {}
        );
        let fitness_threshold = self.max_cliques[position_blockclique]
            .fitness
            .saturating_sub(self.config.delta_f0);
        let stale_blocks = self.list_stale_blocks(fitness_threshold);
        self.max_cliques.retain(|c| c.fitness >= fitness_threshold);
        // mark stale blocks
        massa_trace!(
            "consensus.block_graph.add_block_to_graph.mark_stale_blocks",
            {}
        );
        for stale_block_hash in stale_blocks.into_iter() {
            self.remove_block(&add_block_id, &stale_block_hash);
        }

        // list final blocks
        massa_trace!(
            "consensus.block_graph.add_block_to_graph.list_final_blocks",
            {}
        );
        let final_blocks = self.list_final_blocks()?;

        // mark final blocks and update latest_final_blocks_periods
        massa_trace!(
            "consensus.block_graph.add_block_to_graph.mark_final_blocks",
            {}
        );
        self.mark_final_blocks(&add_block_id, final_blocks)?;

        massa_trace!("consensus.block_graph.add_block_to_graph.end", {});

        {
            // set metrics
            let add_slot_timestamp = timeslots::get_block_slot_timestamp(
                self.config.thread_count,
                self.config.t0,
                self.config.genesis_timestamp,
                add_block_slot,
            )?;
            let diff = MassaTime::now().saturating_sub(add_slot_timestamp);
            self.massa_metrics
                .set_block_slot_delay(diff.to_duration().as_secs_f64());
        }

        Ok(())
    }

    /// Note an attack attempt if the discard reason indicates one.
    pub fn maybe_note_attack_attempt(&mut self, reason: &DiscardReason, hash: &BlockId) {
        massa_trace!("consensus.block_graph.maybe_note_attack_attempt", {"hash": hash, "reason": reason});
        // If invalid, note the attack attempt.
        if let DiscardReason::Invalid(reason) = reason {
            info!(
                "consensus.block_graph.maybe_note_attack_attempt DiscardReason::Invalid:{}",
                reason
            );
            self.attack_attempts.push(*hash);
        }
    }

    /// Notify execution about blockclique changes and finalized blocks.
    ///
    /// # Arguments:
    /// * `finalized_blocks`: Block that became final and need to be send to execution
    fn notify_execution(&mut self, finalized_blocks: HashMap<Slot, BlockId>) {
        // List new block storage instances that Execution doesn't know about.
        // That's blocks that have not been sent to execution before, ie. in the previous blockclique).
        let mut new_blocks_metadata: PreHashMap<BlockId, ExecutionBlockMetadata> = finalized_blocks
            .iter()
            .filter_map(|(_slot, b_id)| {
                if self.prev_blockclique.contains_key(b_id) {
                    // was previously sent as a blockclique element
                    return None;
                }
                let metadata = match self.blocks_state.get(b_id) {
                    Some(BlockStatus::Active {
                        a_block,
                        storage_or_block: StorageOrBlock::Storage(storage),
                        ..
                    }) => ExecutionBlockMetadata {
                        same_thread_parent_creator: a_block.same_thread_parent_creator,
                        storage: Some(storage.clone()),
                    },
                    _ => panic!(
                        "final block not found in active blocks and/or its operations are missing"
                    ),
                };
                Some((*b_id, metadata))
            })
            .collect();

        // Get new blockclique block list with slots.
        let mut blockclique_changed = false;
        let new_blockclique: PreHashMap<BlockId, Slot> = self
            .get_blockclique()
            .iter()
            .map(|b_id| {
                if let Some(slot) = self.prev_blockclique.remove(b_id) {
                    // The block was already sent in the previous blockclique:
                    // the slot can be gathered from there without locking Storage.
                    // Note: the block is removed from self.prev_blockclique.
                    (*b_id, slot)
                } else {
                    // The block was not present in the previous blockclique:
                    // the blockclique has changed => get the block's slot by querying Storage.
                    blockclique_changed = true;
                    let (a_block, storage) = match self.blocks_state.get(b_id) {
                        Some(BlockStatus::Active {
                            a_block,
                            storage_or_block: StorageOrBlock::Storage(storage),
                        }) => (a_block, storage),
                        _ => panic!("blockclique block not found in active blocks and/or its operations are missing"),
                    };
                    new_blocks_metadata.insert(*b_id, ExecutionBlockMetadata { same_thread_parent_creator: a_block.same_thread_parent_creator, storage: Some(storage.clone()) });
                    (*b_id, a_block.slot)
                }
            })
            .collect();
        if !self.prev_blockclique.is_empty() {
            // All elements present in the new blockclique have been removed from `prev_blockclique` above.
            // If `prev_blockclique` is not empty here, it means that it contained elements that are not in the new blockclique anymore.
            // In that case, we mark the blockclique as having changed.
            blockclique_changed = true;
        }
        // Overwrite previous blockclique.
        // Should still be done even if unchanged because elements were removed from it above.
        self.prev_blockclique = new_blockclique.clone();

        if finalized_blocks.is_empty() && !blockclique_changed {
            // There are no changes (neither block finalizations not blockclique changes) to send to execution.
            return;
        }

        // Notify execution of block finalizations and blockclique changes
        self.channels
            .execution_controller
            .update_blockclique_status(
                finalized_blocks,
                if blockclique_changed {
                    Some(new_blockclique.into_iter().map(|(k, v)| (v, k)).collect())
                } else {
                    None
                },
                new_blocks_metadata,
            );
    }

    /// call me if the block database changed
    /// Processing of final blocks, pruning.
    ///
    /// 1. propagate blocks
    /// 2. Notify of attack attempts
    /// 3. get new final blocks
    /// 4. get blockclique
    /// 5. notify Execution
    /// 6. Process new final blocks
    /// 7. Notify pool of new final ops
    /// 8. Notify PoS of final blocks
    /// 9. notify protocol of block wish list
    /// 10. note new latest final periods (prune graph if changed)
    /// 11. add stale blocks to stats
    pub fn block_db_changed(&mut self) -> Result<(), ConsensusError> {
        let final_block_slots = {
            massa_trace!("consensus.consensus_worker.block_db_changed", {});

            // Propagate new blocks
            for (block_id, storage) in mem::take(&mut self.to_propagate).into_iter() {
                massa_trace!("consensus.consensus_worker.block_db_changed.integrated", {
                    "block_id": block_id
                });
                self.channels
                    .protocol_controller
                    .integrated_block(block_id, storage)?;
            }

            // Notify protocol of attack attempts.
            for hash in mem::take(&mut self.attack_attempts).into_iter() {
                self.channels
                    .protocol_controller
                    .notify_block_attack(hash)?;
                massa_trace!("consensus.consensus_worker.block_db_changed.attack", {
                    "hash": hash
                });
            }

            // manage finalized blocks
            let timestamp = MassaTime::now();
            let finalized_blocks = mem::take(&mut self.new_final_blocks);
            let mut final_block_slots = HashMap::with_capacity(finalized_blocks.len());
            let mut final_block_stats = VecDeque::with_capacity(finalized_blocks.len());
            for b_id in finalized_blocks {
                if let Some(BlockStatus::Active { a_block, .. }) = self.blocks_state.get(&b_id) {
                    // add to final blocks to notify execution
                    final_block_slots.insert(a_block.slot, b_id);

                    // add to stats
                    let block_is_from_protocol = self
                        .protocol_blocks
                        .iter()
                        .any(|(_, block_id)| block_id == &b_id);
                    final_block_stats.push_back((
                        timestamp,
                        a_block.creator_address,
                        block_is_from_protocol,
                    ));
                }
            }
            self.final_block_stats.extend(final_block_stats);

            // add stale blocks to stats
            let new_stale_block_ids_creators_slots = mem::take(&mut self.new_stale_blocks);
            let timestamp = MassaTime::now();
            for (_b_id, (_b_creator, _b_slot)) in new_stale_block_ids_creators_slots.into_iter() {
                self.stale_block_stats.push_back(timestamp);
            }
            final_block_slots
        };

        // notify execution
        self.notify_execution(final_block_slots);

        // notify protocol of block wishlist
        let new_wishlist = self.get_block_wishlist()?;
        let new_blocks: PreHashMap<BlockId, Option<SecuredHeader>> = new_wishlist
            .iter()
            .filter_map(|(id, header)| {
                if !self.wishlist.contains_key(id) {
                    Some((*id, header.clone()))
                } else {
                    None
                }
            })
            .collect();
        let remove_blocks: PreHashSet<BlockId> = self
            .wishlist
            .iter()
            .filter_map(|(id, _)| {
                if !new_wishlist.contains_key(id) {
                    Some(*id)
                } else {
                    None
                }
            })
            .collect();
        if !new_blocks.is_empty() || !remove_blocks.is_empty() {
            massa_trace!("consensus.consensus_worker.block_db_changed.send_wishlist_delta", { "new": new_wishlist, "remove": remove_blocks });
            self.channels
                .protocol_controller
                .send_wishlist_delta(new_blocks, remove_blocks)?;
            self.wishlist = new_wishlist;
        }

        // note new latest final periods
        let latest_final_periods: Vec<u64> = self
            .latest_final_blocks_periods
            .iter()
            .map(|(_block_id, period)| *period)
            .collect();
        // if changed...
        if self.save_final_periods != latest_final_periods {
            // signal new last final periods to pool
            self.channels
                .pool_controller
                .notify_final_cs_periods(&latest_final_periods);
            // update final periods
            self.save_final_periods = latest_final_periods;
        }

        Ok(())
    }
}