Replace all hashlib ripemd160 functions.

This commit is contained in:
tecnovert
2023-12-16 09:29:48 +02:00
parent 08f0156b75
commit 0a9db22828
11 changed files with 31 additions and 23 deletions
@@ -68,9 +68,6 @@ mininode_lock = RLock()
def sha256(s):
return hashlib.new('sha256', s).digest()
def ripemd160(s):
return hashlib.new('ripemd160', s).digest()
def hash256(s):
return sha256(sha256(s))