steemit / steem-python

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

[steem.Post] get_all_replies() no longer works #11

Open Netherdrake opened 7 years ago

Netherdrake commented 7 years ago
In [3]: len(list(p.get_replies()))
Out[3]: 43

In [4]: len(list(p.get_all_replies()))
Out[4]: 0
fxnormaluser commented 6 years ago

With the recommended usage:

Usage: all_comments = Post.get_all_replies(Post('@foo/bar'))

It does not work either.

cyon1c commented 6 years ago

Need to add tests to cover this case, and verify whether it is still happening.