From 622c5af6e45ee37dbf6c0d94c31068af42cec8c5 Mon Sep 17 00:00:00 2001 From: im-adithya Date: Mon, 15 Jul 2024 20:05:14 +0530 Subject: [PATCH] chore: remove print lines --- internal/nostr/nostr.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/nostr/nostr.go b/internal/nostr/nostr.go index aefacb0..e337809 100644 --- a/internal/nostr/nostr.go +++ b/internal/nostr/nostr.go @@ -6,7 +6,6 @@ import ( "database/sql" "encoding/json" "errors" - "fmt" "http-nostr/migrations" "net/http" "os" @@ -1006,9 +1005,6 @@ func (svc *Service) subscriptionToFilter(subscription *Subscription) (*nostr.Fil } func (svc *Service) getWalletPubkey(authors *[]string) string { - fmt.Println("authors") - fmt.Println(authors) - fmt.Println("authors") if authors != nil && len(*authors) > 0 { return (*authors)[0] }