Bittrex cancelOrder TypeError: Cannot read property 'split' of undefined
See original GitHub issueATTENTION!!!
MUST READ THIS BEFORE SUBMITTING ISSUES (read the link, then delete this message before submitting):
https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-submit-an-issue
- OS: Ubuntu
- Programming Language version: js
- CCXT version: 1.18.787
- Exchange: bittrex
- Method: cancelOrder
const order = await bittrex.fetchOpenOrders('PAY/BTC')
await bittrex.cancelOrder(order.id, 'PAY/BTC')
This error does not happen all the time. I tried to replicate it but did not appear again. But it is frequently observed on bittrex.
Issue Analytics
- State:
- Created 4 years ago
- Comments:13 (8 by maintainers)
Top Results From Across the Web
Cannot Read Property 'split' of Undefined - freeCodeCamp
it will throw the TypeError: Cannot read property 'split' of undefined error. The split method. When split is called on a string, it...
Read more >How to prevent cannot read property split of ... - Meticulous
This error is a TypeError , and it occurs when calling a method, operand, or argument on the wrong data type, or when...
Read more >How to Prevent cannot read property split of ... - Gopi Gorantala
The "cannot read property split of undefined" error occurs when we try ... TypeError: Cannot read properties of undefined (reading 'split').
Read more >TypeError: Cannot read property 'split' of undefined in discord ...
You're trying to call split on undefined . Don't do that. First, check to see if it exists. let token; if (msg &&...
Read more >Bittrex Crypto Exchange | The Best Crypto Trading Platform
Bittrex Crypto Exchange offers the best crypto trading platform for everyone, regardless of experience. Get started on your crypto trading journey here.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Here is some more info on this issue:
It seems error is not an inatance of ccxt.BaseError
What version of ccxt are you using? I am looking at the bittrex code on the current release and there is no parseSymbol in parseOrderV3 (the trace that you are outputting)