Skip to content

Commit b0a1da0

Browse files
authored
Update blockchain-parser.py
1 parent 00a1253 commit b0a1da0

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

blockchain-parser.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,6 @@
88
import datetime
99
import hashlib
1010

11-
def HexToInt(s):
12-
t = ''
13-
if s == '':
14-
r = 0
15-
else:
16-
t = '0x' + s
17-
r = int(t,16)
18-
return r
19-
2011
def reverse(input):
2112
L = len(input)
2213
if (L % 2) != 0:

0 commit comments

Comments
 (0)