steemit / steem-python

The official Python (3) library for the Steem Blockchain.
https://steem.io
MIT License
154 stars 100 forks source link

exception cleanup, fix retriable rpc errs #210

Closed roadscape closed 6 years ago

roadscape commented 6 years ago

RPCError now represents all non-recoverable errors. All errors are assumed to be non-recoverable except for (1) steemd lock error and (2) steemd unknown exception, which will now be thrown as RPCErrorRecoverable.

Also removed cruft from reliable_query and stopped silencing errors.