From 1883a11ab1fe510aaa6125e85d77b0da3a4e7992 Mon Sep 17 00:00:00 2001 From: Rob Mulholand Date: Wed, 14 Aug 2019 12:19:51 -0500 Subject: [PATCH] Update comment in log chunker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Edvard Hübinette --- libraries/shared/chunker/log_chunker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/chunker/log_chunker.go b/libraries/shared/chunker/log_chunker.go index 6adceb42..38edd5af 100644 --- a/libraries/shared/chunker/log_chunker.go +++ b/libraries/shared/chunker/log_chunker.go @@ -51,7 +51,7 @@ func (chunker *LogChunker) AddConfig(transformerConfig transformer.EventTransfor } } -// Goes through an array of logs, associating relevant logs (matching addresses and topic) with transformers +// Goes through a slice of logs, associating relevant logs (matching addresses and topic) with transformers func (chunker *LogChunker) ChunkLogs(logs []core.HeaderSyncLog) map[string][]core.HeaderSyncLog { chunks := map[string][]core.HeaderSyncLog{} for _, log := range logs {