From b1010204cc105a1c7aa29377fe094f737a220ed9 Mon Sep 17 00:00:00 2001 From: jbhusson <jonah@elixxir.io> Date: Thu, 6 Jan 2022 10:32:50 -0500 Subject: [PATCH] Remove print in notif bindings --- bindings/notifications.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/bindings/notifications.go b/bindings/notifications.go index cfd87f51d..71db73728 100644 --- a/bindings/notifications.go +++ b/bindings/notifications.go @@ -9,7 +9,6 @@ package bindings import ( "encoding/json" - "fmt" "github.com/pkg/errors" "gitlab.com/elixxir/client/storage/edge" "gitlab.com/elixxir/crypto/fingerprint" @@ -69,7 +68,6 @@ func NotificationsForMe(notifCSV, preimages string) (*ManyNotificationForMeRepor } list, err := notifications.DecodeNotificationsCSV(notifCSV) - fmt.Printf("%+v, %+v", list[0], list[1]) if err != nil { return nil, err -- GitLab