From f4a1210588d9092582bd1ea0137ba0c235d83553 Mon Sep 17 00:00:00 2001 From: Alessandro Coglio Date: Thu, 23 Jan 2025 12:58:57 -0800 Subject: [PATCH] Fix outdated comment. Batch headers no longer include last election certificate ID. --- ledger/narwhal/batch-header/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledger/narwhal/batch-header/src/lib.rs b/ledger/narwhal/batch-header/src/lib.rs index b091e178f8..c48df6252b 100644 --- a/ledger/narwhal/batch-header/src/lib.rs +++ b/ledger/narwhal/batch-header/src/lib.rs @@ -37,7 +37,7 @@ use rayon::prelude::*; #[derive(Clone, PartialEq, Eq)] pub struct BatchHeader { /// The batch ID, defined as the hash of the author, round number, timestamp, transmission IDs, - /// committee ID, previous batch certificate IDs, and last election certificate IDs. + /// committee ID, and previous batch certificate IDs. batch_id: Field, /// The author of the batch. author: Address,