You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry, should probably not raise an issue but rather submit a commit, but don't work with girhub often and short on time.
But I found that coin_id = coin_link.values()[0].lstrip("/currencies/")[:-1] in utils.py should be changed to coin_id = coin_link.values()[0].replace("/currencies/","")[:-1]
I discovered it while running into trouble trying to use your code for currency EOS.
I found that '/currencies/eos' in your code resulted in 'os' as the coin_id, while it should be 'eos'. I thought it was a bug in Python but found it wasn't > https://bugs.python.org/issue5318
The text was updated successfully, but these errors were encountered:
Sorry, should probably not raise an issue but rather submit a commit, but don't work with girhub often and short on time.
But I found that
coin_id = coin_link.values()[0].lstrip("/currencies/")[:-1]
in utils.py should be changed tocoin_id = coin_link.values()[0].replace("/currencies/","")[:-1]
I discovered it while running into trouble trying to use your code for currency EOS.
I found that '/currencies/eos' in your code resulted in 'os' as the coin_id, while it should be 'eos'. I thought it was a bug in Python but found it wasn't > https://bugs.python.org/issue5318
The text was updated successfully, but these errors were encountered: