Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hash160() function bug #185

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test_framework/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import itertools
import queue
import struct

from Crypto.Hash import RIPEMD160
from .bignum import bn2vch

MAX_SCRIPT_ELEMENT_SIZE = 520
Expand All @@ -30,9 +30,9 @@
TAPROOT_VER = 0

def hash160(s):
return hashlib.new('ripemd160', sha256(s)).digest()


h = RIPEMD160.new()
h.update(sha256(s))
return h.digest()
_opcode_instances = []
class CScriptOp(int):
"""A single script opcode"""
Expand Down