From c249a42bb79a173342a5448b06d4da91636b60bc Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Wed, 25 Apr 2018 18:01:18 -0500 Subject: [PATCH] added addres+pubkey to stats --- onionr/onionr.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/onionr/onionr.py b/onionr/onionr.py index 164900e3..179a9bbc 100755 --- a/onionr/onionr.py +++ b/onionr/onionr.py @@ -534,7 +534,8 @@ class Onionr: ''' Displays statistics and exits ''' - + logger.info('Our pubkey: ' + self.onionrCore._crypto.pubKey) + logger.info('Our address: ' + self.get_hostname()) return def showHelp(self, command = None):