blob: b8a32413a358d3a3f1032e5d681b9bcc443faae7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- merkletools/__init__.py.orig 2024-01-16 17:39:29 UTC
+++ merkletools/__init__.py
@@ -1,11 +1,5 @@ import binascii
import hashlib
import binascii
-try:
- import sha3
-except:
- from warnings import warn
- warn("sha3 is not working!")
-
class MerkleTools(object):
def __init__(self, hash_type="sha256"):
|