vbuterin / pybitcointools

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

typos in transaction.py prevent command line usage #122

Closed smemsh closed 8 years ago

smemsh commented 8 years ago
 $ git config --get remote.upstream.url
https://github.com/vbuterin/pybitcointools.git

 $ git rev-parse @
da3fd128cd1cf29dedefc57d0223e312a2e7359e

 $ python2 pybtctool sha256 testing
Traceback (most recent call last):
  File "pybtctool", line 3, in <module>
    from bitcoin import *
  File "/home/scott/upsrc/pybitcointools/bitcoin/__init__.py", line 4, in <module>
    from bitcoin.transaction import *
  File "/home/scott/upsrc/pybitcointools/bitcoin/transaction.py", line 141
    for out in newtx["outs'][:len(newtx["ins"]) - 1)]:
                                           ^
SyntaxError: invalid syntax
wizardofozzie commented 8 years ago

Already submitted as an issue; just waiting on @vbuterin to merge Maybe try my fork in the interim

vbuterin commented 8 years ago

Merged. Thank you!

On Fri, Oct 23, 2015 at 2:47 AM, WizardOfOzzie notifications@github.com wrote:

Already submitted as an issue https://github.com/vbuterin/pybitcointools/pull/117; just waiting on @vbuterin https://github.com/vbuterin to merge

— Reply to this email directly or view it on GitHub https://github.com/vbuterin/pybitcointools/pull/122#issuecomment-150491030 .

smemsh commented 8 years ago

@wizardofozzie sorry, I had looked through the issues first but must have missed it. thanks!