-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfix_missing_public_keys.py
32 lines (27 loc) · 1.45 KB
/
fix_missing_public_keys.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
##
#
# int[][] fix_missing_public_keys(int[][])
# @var rows the matrix of int data values to process
# @return the preprocessed main data matrix
# preprocessing: input pubkeys from 'coinbase' are sometimes given in raw data as (None), these can be fixed by using the output pubkey
# We've indexed these pubkeys to 0 (see below: prev_row[3] == 0), so we are filling 0 values.
#
from operator import itemgetter
import array as ar
def fix_missing_public_keys(rows):
#handle missing pubkeys
rows.sort(key=itemgetter(1,2,0))
prev_row = rows[0]
for i in range(1, len(rows)):
row = rows[i]
if prev_row[3] == 0 and row[0] == 1 and row[1] == prev_row[1] and row[2] == prev_row[2]: # if missing, type==output and matching input key
rows[i-1] = ar.array('L', map(int, [prev_row[0], prev_row[6], prev_row[2], row[3], prev_row[4], prev_row[5]]))
else:
rows[i-1] = ar.array('L', map(int, [prev_row[0], prev_row[6], prev_row[2], prev_row[3], prev_row[4], prev_row[5]]))
prev_row = row
if i % 1000000 == 0:
print "Progress: fix public keys, percent complete: " + str(float(i)/len(rows))
##### row specification:
# row: [<"i"/"o">, transaction_key, index, pubkey, date_time, <i:referent transaction, o:outputvalue >]
rows[i] = ar.array('L', map(int, [prev_row[0], prev_row[6], prev_row[2], prev_row[3], prev_row[4], prev_row[5]]))
return rows;