From 717035a136c0afe5c10275e5d38aab00d52ea227 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Thu, 26 Apr 2018 21:23:43 -0500 Subject: [PATCH] fixed missing import in crypto --- onionr/onionrcrypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/onionrcrypto.py b/onionr/onionrcrypto.py index e517778a..3a45eeda 100644 --- a/onionr/onionrcrypto.py +++ b/onionr/onionrcrypto.py @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . ''' -import nacl.signing, nacl.encoding, nacl.public, nacl.secret, os, binascii, base64, hashlib +import nacl.signing, nacl.encoding, nacl.public, nacl.secret, os, binascii, base64, hashlib, logger class OnionrCrypto: def __init__(self, coreInstance):