jgarzik / python-bitcoinrpc

Python interface to bitcoin's JSON-RPC API
GNU Lesser General Public License v2.1
644 stars 304 forks source link

TypeError: string indices must be integers #74

Open mverrilli opened 7 years ago

mverrilli commented 7 years ago

Hi,

Getting errors on the batch example. This is in Python 2.7.

>>> commands = [ [ "getblockhash", height] for height in range(100) ]
>>> block_hashes = rpc_connection.batch_(commands)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/bitcoinrpc/authproxy.py", line 169, in batch_
    if response['error'] is not None:
TypeError: string indices must be integers