From 5750f49834deee9dfce752ff840630ae402a8b51 Mon Sep 17 00:00:00 2001 From: findmyhappy <167661649+findmyhappy@users.noreply.github.com> Date: Wed, 4 Jun 2025 15:20:44 +0800 Subject: [PATCH] chore: fix struct field name in comment (#13157) Signed-off-by: findmyhappy --- blockstore/splitstore/splitstore.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blockstore/splitstore/splitstore.go b/blockstore/splitstore/splitstore.go index a3b93599f..8b82172ae 100644 --- a/blockstore/splitstore/splitstore.go +++ b/blockstore/splitstore/splitstore.go @@ -102,14 +102,14 @@ type Config struct { // from the hotstore should be written to the cold store UniversalColdBlocks bool - // HotstoreMessageRetention indicates the hotstore retention policy for messages. + // HotStoreMessageRetention indicates the hotstore retention policy for messages. // It has the following semantics: // - a value of 0 will only retain messages within the compaction boundary (4 finalities) // - a positive integer indicates the number of finalities, outside the compaction boundary, // for which messages will be retained in the hotstore. HotStoreMessageRetention uint64 - // HotstoreFullGCFrequency indicates how frequently (in terms of compactions) to garbage collect + // HotStoreFullGCFrequency indicates how frequently (in terms of compactions) to garbage collect // the hotstore using full (moving) GC if supported by the hotstore. // A value of 0 disables full GC entirely. // A positive value is the number of compactions before a full GC is performed;