From 857bec44b5ad9acbc93eb4201d5caad52a66e64c Mon Sep 17 00:00:00 2001 From: Aven Dauz Date: Thu, 12 Aug 2021 14:51:44 -0400 Subject: [PATCH] removed print to nil pointer --- x/nft/module.go | 1 - 1 file changed, 1 deletion(-) diff --git a/x/nft/module.go b/x/nft/module.go index a59790f0..6041d4ac 100644 --- a/x/nft/module.go +++ b/x/nft/module.go @@ -176,7 +176,6 @@ func checkBroadcastPeer(ctx sdk.Context, am AppModule) { func startTorrentClient(ctx sdk.Context, am AppModule) { btClient, err := torrentClient.NewTorrentClient(am.btDirectory, am.btPort) - fmt.Println("Torrent client created", *btClient) if err != nil { am.keeper.Logger(ctx).Error("Error creating btClient", "btClient", err) }