From 7aa3261ce494c49f2e84580cbb92f808cf6cad6d Mon Sep 17 00:00:00 2001 From: Akosh Farkash Date: Wed, 24 Jul 2024 16:45:40 +0100 Subject: [PATCH] Update core/node/consensus/src/storage/store.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bruno França --- core/node/consensus/src/storage/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/node/consensus/src/storage/store.rs b/core/node/consensus/src/storage/store.rs index 46fa1c17076b..b1dc3e0b60c2 100644 --- a/core/node/consensus/src/storage/store.rs +++ b/core/node/consensus/src/storage/store.rs @@ -466,7 +466,7 @@ impl storage::PersistentBatchStore for Store { // The latest decision is not to store batches with gaps between in the database *of the main node*. // Once we have an API to serve to external nodes the earliest number the main node wants them to sign, - // we can get rid of this method: on the main node we can sign from what `last_batc_qc` returns, and + // we can get rid of this method: on the main node we can sign from what `last_batch_qc` returns, and // while external nodes we can go from whatever the API returned. const NUM_BATCHES_TO_SIGN: u64 = 10;