It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
Traceback (most recent call last):
File "T:\blockchain-parser-master\blockchain-parser.py", line 246, in
tmpHex = merkle_root(tx_hashes).hex().upper()
File "T:\blockchain-parser-master\blockchain-parser.py", line 30, in merkle_root
return merkle_root([hash_pair(x,y) for x, y in zip(*[iter(lst)]*2)])
File "T:\blockchain-parser-master\blockchain-parser.py", line 30, in merkle_root
return merkle_root([hash_pair(x,y) for x, y in zip(*[iter(lst)]*2)])
File "T:\blockchain-parser-master\blockchain-parser.py", line 30, in merkle_root
return merkle_root([hash_pair(x,y) for x, y in zip(*[iter(lst)]*2)])
[Previous line repeated 995 more times]
File "T:\blockchain-parser-master\blockchain-parser.py", line 27, in merkle_root
if len(lst) == 1: return lst[0]
RecursionError: maximum recursion depth exceeded while calling a Python object
File "/media/blockchain-parseroriginal.py", line 294, in
tmpHex = merkle_root(tx_hashes).hex().upper()
def merkle_root(lst): # https://gist.github.com/anonymous/7eb080a67398f648c1709e41890f8c44
sha256d = lambda x: hashlib.sha256(hashlib.sha256(x).digest()).digest()
hash_pair = lambda x, y: sha256d(x[::-1] + y[::-1])[::-1]
if len(lst) == 1: return lst[0]
if len(lst) % 2 == 1:
lst.append(lst[-1])
return merkle_root([hash_pair(x,y) for x, y in zip(*[iter(lst)]*2)])
if len(lst) == 1: return lst[0]
if len(lst) % 2 == 1:
lst.append(lst[-1])
TX AE3F3F8D299D9A15479901FA776536D42C868E8CEDD1EC2DB27FC5B4CD3F71A2
TX A9A02B7FC93B9747918BBE0A96BCC2416895B4FD497C3B6C343B317C105134B4
Traceback (most recent call last):
File "/media/blockchain-parseroriginal.py", line 294, in
tmpHex = merkle_root(tx_hashes).hex().upper()
File "/media/blockchain-parseroriginal.py", line 34, in merkle_root
return merkle_root([hash_pair(x, y) for x, y in zip(*[iter(lst)]*2)])
File "/media/blockchain-parseroriginal.py", line 34, in merkle_root
return merkle_root([hash_pair(x, y) for x, y in zip(*[iter(lst)]*2)])
File "/media/blockchain-parseroriginal.py", line 34, in merkle_root
return merkle_root([hash_pair(x, y) for x, y in zip(*[iter(lst)]*2)])
[Previous line repeated 995 more times]
File "/media/blockchain-parseroriginal.py", line 30, in merkle_root
if len(lst) == 1:
RecursionError: maximum recursion depth exceeded while calling a Python object