steemit / steem-python

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

default nodes not working #180

Open devopsjourney1 opened 6 years ago

devopsjourney1 commented 6 years ago

default nodes in steempy are not working and when you try to stream with custom nodes it's not working.

here is my list:


rpc.steemviz.com
https://steemd.steemitstage.com
http://steemd.pevo.science
https://api.steemit.com
cyon1c commented 6 years ago

Could you provide a stack trace @firemouse604 ? Is it similar/duplicate of #162 ?

AmoghSubhedar commented 6 years ago

If you are trying to stream from blockchain, you have to set a reference to the new nodes. s = Steem(nodes=['rpc.steemviz.com']) b = Blockchain(s) Now, your script will use the new nodes to stream the blockchain. If you don't put a steem object as an argument, then the default nodes will be used.