diff options
Diffstat (limited to 'trie')
-rw-r--r-- | trie/sync_bloom.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trie/sync_bloom.go b/trie/sync_bloom.go index 7b5b7488a..2182d1c43 100644 --- a/trie/sync_bloom.go +++ b/trie/sync_bloom.go @@ -70,7 +70,7 @@ func NewSyncBloom(memory uint64, database ethdb.Iteratee) *SyncBloom { // Create the bloom filter to track known trie nodes bloom, err := bloomfilter.New(memory*1024*1024*8, 3) if err != nil { - panic(fmt.Sprintf("failed to create bloom: %v", err)) // Can't happen, here for sanity + panic(fmt.Sprintf("failed to create bloom: %v", err)) } log.Info("Allocated fast sync bloom", "size", common.StorageSize(memory*1024*1024)) |