Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Commit

Permalink
remove return statement from subscriber start method
Browse files Browse the repository at this point in the history
Signed-off-by: Darian Plumb <dplumb@bitwise.io>
  • Loading branch information
dplumb94 committed Dec 27, 2017
1 parent d879806 commit f8dc1f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledger_sync/marketplace_ledger_sync/subscriber.py
Expand Up @@ -87,7 +87,7 @@ def start(self, known_ids=None):
# Forked all the way back to genesis, restart with no known_ids
if (response.status == ClientEventsSubscribeResponse.UNKNOWN_BLOCK
and known_ids):
return self.start()
self.start()

if response.status != ClientEventsSubscribeResponse.OK:
raise RuntimeError(
Expand Down

0 comments on commit f8dc1f1

Please sign in to comment.