From 47a4d8f6e3ff19aa4cd06f8ff967342f6e39c796 Mon Sep 17 00:00:00 2001 From: Marcin Date: Fri, 3 Jan 2025 09:57:03 +0100 Subject: [PATCH] fmt --- consensus/src/units/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/src/units/mod.rs b/consensus/src/units/mod.rs index 371d74c2..6c6ff817 100644 --- a/consensus/src/units/mod.rs +++ b/consensus/src/units/mod.rs @@ -70,7 +70,7 @@ impl ControlHash { /// Calculate parent control hash, which includes all parent hashes into account. pub(crate) fn combine_hashes(parent_map: &NodeMap<(H::Hash, Round)>) -> H::Hash { - // we include parent rounds with calculating hash but this is okay - we cannot + // we include parent rounds with calculating hash but this is okay - we cannot // have two units with the same hash but different rounds parent_map.using_encoded(H::hash) }