more bytes issues
This commit is contained in:
parent
e0618f3166
commit
7cf4cd9862
@ -263,6 +263,10 @@ class OnionrCrypto:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
blockHash = self.sha3Hash(blockContent)
|
blockHash = self.sha3Hash(blockContent)
|
||||||
|
try:
|
||||||
|
blockHash = blockHash.decode() # bytes on some versions for some reason
|
||||||
|
except AttributeError:
|
||||||
|
pass
|
||||||
|
|
||||||
difficulty = math.floor(dataLen / 1000000)
|
difficulty = math.floor(dataLen / 1000000)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user