From c83dddde247baba2d83920debe776dee596b3ac5 Mon Sep 17 00:00:00 2001
From: "Richard T. Carback III" <rick.carback@gmail.com>
Date: Wed, 18 May 2022 21:55:31 +0000
Subject: [PATCH] Don't print private key

---
 auth/store/sentRequest.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/auth/store/sentRequest.go b/auth/store/sentRequest.go
index 5903522f7..c6080a9e0 100644
--- a/auth/store/sentRequest.go
+++ b/auth/store/sentRequest.go
@@ -169,8 +169,8 @@ func (sr *SentRequest) save() error {
 		hex.EncodeToString(sr.partner[:]))
 	jww.INFO.Printf("saveSentRequest historicalPubKey: %s",
 		hex.EncodeToString(sr.partnerHistoricalPubKey.Bytes()))
-	jww.INFO.Printf("saveSentRequest myPrivKey: %s",
-		hex.EncodeToString(sr.myPrivKey.Bytes()))
+	// jww.INFO.Printf("saveSentRequest myPrivKey: %s",
+	// 	hex.EncodeToString(sr.myPrivKey.Bytes()))
 	jww.INFO.Printf("saveSentRequest myPubKey: %s",
 		hex.EncodeToString(sr.myPubKey.Bytes()))
 	jww.INFO.Printf("saveSentRequest fingerprint: %s",
-- 
GitLab