From 86a3f74448c09a003fbeb31d188ee6e6d6cdc28b Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Mon, 10 Apr 2023 21:45:10 +0100 Subject: [PATCH] adding some clarification comments (#391) --- codex/stores/repostore.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codex/stores/repostore.nim b/codex/stores/repostore.nim index 935d5c46..bc2b3798 100644 --- a/codex/stores/repostore.nim +++ b/codex/stores/repostore.nim @@ -43,9 +43,9 @@ type repoDs*: Datastore metaDs*: Datastore clock: Clock - quotaMaxBytes*: uint - quotaUsedBytes*: uint - quotaReservedBytes*: uint + quotaMaxBytes*: uint # maximum available bytes + quotaUsedBytes*: uint # bytes used by the repo + quotaReservedBytes*: uint # bytes reserved by the repo blockTtl*: Duration started*: bool