bumped api version and removed encode on setdata since it is always bytes now

This commit is contained in:
Kevin Froman 2018-04-22 21:16:11 -05:00
parent ae79b7ee3a
commit 8853926287
No known key found for this signature in database
GPG key ID: 0D414D0FE405B63B
2 changed files with 2 additions and 2 deletions

View file

@ -270,7 +270,7 @@ class Core:
'''
Set the data assciated with a hash
'''
data = data.encode()
data = data
hasher = hashlib.sha3_256()
hasher.update(data)
dataHash = hasher.hexdigest()