You are viewing a single comment's thread from:
RE: Fix Witness price feed if using Conductor
steem-python is broken, too.
Is it still maintained?
Change
nodes = get_config_node_list() or ['https://steemd.steemit.com']
to
nodes = get_config_node_list() or ['https://api.steemit.com']
in https://github.com/steemit/steem-python/blob/master/steem/steemd.py
Because for Commit(s) with s = Steem(nodes=nodes) it still wanted to access steemd and not nodes=['https://api.steemit.com'] as I choose always the fastest/closest RPC node in all my scripts
I almost always specify nodes.
It's maintained, but very slowly. It has another issue on install that requires modifying manifest files to get it to install.
But this morning, even with specified nodes, it tried to access steemd.steemit.com.
Strange, but I didn't investigate further, as this fixed my issues.
Thanks for the answer!
Is how I do it in all my scripts. All worked gracefully during cut over.
for me https://steemd.pevo.science is usually the fastest and on first position
Looks like there is a pull request for it already.
_