We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b27fd4 commit e458d85Copy full SHA for e458d85
Notebooks/blocksci/__init__.py
@@ -84,7 +84,7 @@ def reduceFunc(cur, el):
84
return cur + [el]
85
init = list()
86
tx_ids = mapreduce_block_ranges(self, mapFunc, reduceFunc, init, start, end, cpu_count)
87
- return [Tx.tx_with_index(x) for x in tx_ids]
+ return [Tx(x) for x in tx_ids]
88
89
Blockchain.map_blocks = map_blocks
90
Blockchain.filter_blocks = filter_blocks
0 commit comments