Added some comments to make the code more readable

This commit is contained in:
Rodolphe Marques 2016-11-17 12:45:04 +01:00
parent 98084f6f4a
commit f2922222be

View File

@ -352,6 +352,8 @@ class Bigchain(object):
transactions = []
for txid in txids:
tx = self.get_transaction(txid)
# if a valid or undecided transaction exists append it to the list
# of transactions
if tx:
transactions.append(tx)
return transactions