-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ChaingraphAPI issue #146
Comments
It looks like the chaingraph testnet instance returns invalid data... I am getting various errors (mainly Sadly this is the single main recurring issue that BitCash has been dealing with pretty much forever: none of the third party services used to interact with the blockchain are reliable. However, the mainnet instance seems to be working fine: import bitcash
k = bitcash.PrivateKey()
k.get_balance()
# Returns '0' |
FYI @cromachina here is the response from ChainGraph when querrying the block height: Request:
Response: {
"errors": [
{
"extensions": {
"code": "unexpected",
"path": "$"
},
"message": "database query error"
}
]
} and the worst thing is it's a 200 status code... Again, it looks like this is specific to testnet. So that doesn't seem to be an issue with BitCash, though it is breaking BitCash as a result. I suggest raising an issue with Chaingraph directly so hopefully they can fix it: https://github.com/bitauth/chaingraph |
Actually I'll leave this open even though it's an issue with Chaingraph, in case anyone is having the same problem. Hopefully this is fixed soon 🤞🏻 |
An error is thrown when trying to extract data from a ChaingraphAPI response, seemingly.
Minimal example:
The text was updated successfully, but these errors were encountered: