Skip to content

Commit e458d85

Browse files
committed
Fixes #50
1 parent 6b27fd4 commit e458d85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Notebooks/blocksci/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def reduceFunc(cur, el):
8484
return cur + [el]
8585
init = list()
8686
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]
87+
return [Tx(x) for x in tx_ids]
8888

8989
Blockchain.map_blocks = map_blocks
9090
Blockchain.filter_blocks = filter_blocks

0 commit comments

Comments
 (0)