Hemant Sirsat
Results
2
issues of
Hemant Sirsat
I was implementing a buy function using pyserum and solana using the following code. ```order = market.place_order( payer=sender_keypair.public_key, owner=Account(sender_keypair), side=Side.BUY, order_type=OrderType.LIMIT, limit_price=0.5, max_quantity=abs(1), opts=TxOpts(skip_preflight=True) ) ``` The following error occurs:...