Skip to content
Snippets Groups Projects
Commit 4496336f authored by crokkon's avatar crokkon
Browse files

steem.py: remove redundant API call

parent 567cb53c
No related branches found
No related tags found
No related merge requests found
......@@ -271,10 +271,9 @@ class Steem(object):
self.data["dynamic_global_properties"] = self.get_dynamic_global_properties(False)
try:
self.data['feed_history'] = self.get_feed_history(False)
self.data['get_feed_history'] = self.get_feed_history(False)
except:
self.data['feed_history'] = None
self.data['get_feed_history'] = None
self.data['get_feed_history'] = self.data['feed_history']
try:
self.data['hardfork_properties'] = self.get_hardfork_properties(False)
except:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment