From 075ae0abdbf568e19299dcba5c22cfc985760294 Mon Sep 17 00:00:00 2001 From: Charis Date: Tue, 7 Jan 2020 18:17:11 +0800 Subject: [PATCH] format --- src/neo/IO/Caching/HashSetCache.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/neo/IO/Caching/HashSetCache.cs b/src/neo/IO/Caching/HashSetCache.cs index 7a712f558b..a3fe71c559 100644 --- a/src/neo/IO/Caching/HashSetCache.cs +++ b/src/neo/IO/Caching/HashSetCache.cs @@ -10,10 +10,12 @@ public class HashSetCache : IReadOnlyCollection where T : IEquatable /// Sets where the Hashes are stored /// private readonly LinkedList> sets = new LinkedList>(); + /// /// Maximum capacity of each bucket inside each HashSet of . /// private readonly int bucketCapacity; + /// /// Maximum number of buckets for the LinkedList, meaning its maximum cardinality. ///