vbuterin / pybitcointools

SImple, common-sense Bitcoin-themed Python ECC library
1.28k stars 856 forks source link

Posible broken code in transaction.py #118

Closed carlinhoxapo closed 8 years ago

carlinhoxapo commented 8 years ago

Hi,

We found a posible error in the syntax of transaction.py in line 141

    for out in newtx["outs'][:len(newtx["ins"]) - 1)]:

we added a ( before len and used double quotes to close outs

for out in newtx["outs"][:(len(newtx["ins"]) - 1)]:

Regards

Carlos

reiven commented 8 years ago

Yes @carlinhoxapo there is a PullRequest to fix it #117

carlinhoxapo commented 8 years ago

Did not see that one! Thanks!!

reiven commented 8 years ago

@carlinhoxapo as the PR was merged, you can close this issue

carlinhoxapo commented 8 years ago

Great Thanks!