Author Topic: Python blockchain_instance error when calling orderbook() -  (Read 1716 times)

0 Members and 1 Guest are viewing this topic.

Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc
This is a bug that came as I was trying to make code more compatible with other graphene chains.
It should be fixed in latest develop branch .. sorry for the inconvenience.

Offline david987

Using this simple example:
Code: [Select]
from bitshares import BitShares
from bitshares.market import Market

bs = BitShares( 'wss://bitshares.openledger.info/ws', nobroadcast=True )

market = Market("BTS:USD", bitshares_instance=bs)
book = market.orderbook()


Throws this error
Code: [Select]
Traceback (most recent call last):
  File "test.py", line 7, in <module>
    book = market.orderbook()
  File "/home/masternode/.local/lib/python3.5/site-packages/bitshares/market.py", line 235, in orderbook
    ), orders["asks"]))
  File "/home/masternode/.local/lib/python3.5/site-packages/bitshares/market.py", line 234, in <lambda>
    blockchain_instance=self.blockchain
  File "/home/masternode/.local/lib/python3.5/site-packages/bitshares/price.py", line 484, in __init__
    super(Order, self).__init__(*args, blockchain_instance=self.blockchain, **kwargs)
TypeError: __init__() got multiple values for keyword argument 'blockchain_instance'

No idea why it's not working, any pointers?

Thanks.