Exception occured:'success'
result = arbi_bot.binance_client.withdraw(
File "/usr/local/lib/python3.8/site-packages/binance/client.py", line 2254, in withdraw
if not res['success']:
KeyError: 'success'
This might not be the best place to ask, but wondering whether team saw this issue pop up.
Essentially, I am seeing a response from Binance Server, with message 'success'
I can see this message since my exception handler catches this and prints the exception, and raise BinanceWithdrawException(res['msg'])
client raises exception with 'msg'.
I am confused from Binance's API behavior here as it is sending me 'success' as message.
This might not be the best place to ask, but wondering whether team saw this issue pop up. Essentially, I am seeing a response from Binance Server, with message 'success' I can see this message since my exception handler catches this and prints the exception, and
raise BinanceWithdrawException(res['msg'])
client raises exception with 'msg'. I am confused from Binance's API behavior here as it is sending me 'success' as message.