From 9b7f91c9550b8ddcb0770e84a5be29b0187bd5cf Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Mon, 12 Aug 2024 06:28:06 -0700 Subject: [PATCH] function comment --- build/ci.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/ci.go b/build/ci.go index 5838d6b3ee..d605a3c6ad 100644 --- a/build/ci.go +++ b/build/ci.go @@ -379,6 +379,8 @@ func hashAllSourceFiles() (map[string]common.Hash, error) { return res, nil } +// hashSourceFiles iterates the provided set of filepaths (relative to the top-level geth project directory) +// computing the hash of each file. func hashSourceFiles(files []string) (map[string]common.Hash, error) { res := make(map[string]common.Hash) for _, filePath := range files {