fixed missing import in crypto

This commit is contained in:
Kevin Froman 2018-04-26 21:23:43 -05:00
parent e140e8560f
commit 717035a136
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
'''
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):