From 7570614e63bd9f92fe959c28516ad3628c0c6ef7 Mon Sep 17 00:00:00 2001 From: Zahoor Mohamed <zahoor@ethswarm.org> Date: Mon, 8 Feb 2021 19:29:04 +0530 Subject: [PATCH] reverted the mistake --- pkg/collection/index.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/collection/index.go b/pkg/collection/index.go index 44d9e52b..ad3ce000 100644 --- a/pkg/collection/index.go +++ b/pkg/collection/index.go @@ -353,8 +353,7 @@ func longestCommonPrefix(str1, str2 string) (string, string, string) { func getRootManifestOfIndex(actualIndexName string, fd *feed.API, user utils.Address, client blockstore.Client) *Manifest { var manifest Manifest topic := utils.HashString(actualIndexName) - addr, _, err := fd.GetFeedData(topic, user) - fmt.Println(addr) + _, addr, err := fd.GetFeedData(topic, user) if err != nil { return nil }