Skip to content

Commit 7fa4f50

Browse files
authored
Merge pull request #84 from 0xB10C/patch-1
fix: remove left over column after compare
2 parents 8135a5b + d76bc1a commit 7fa4f50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blockchain_parser/blockchain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def _index_confirmed(self, chain_indexes, num_confirmations=6):
144144
# we are ready to make a decision on whether or not the block
145145
# belongs to a fork or the main chain
146146
if len(chain) == num_confirmations:
147-
return first_block.hash in chain:
147+
return first_block.hash in chain
148148

149149

150150
def get_ordered_blocks(self, index, start=0, end=None, cache=None):

0 commit comments

Comments
 (0)