Skip to content

Commit

Permalink
one left out method not updated for sync status changes
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Stolecki <mateusz@golem.foundation>
  • Loading branch information
MateuszStoleckiGLM committed Jul 19, 2024
1 parent 68c16cc commit 0dcbf1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ def wait_for_sync(self, target):

def wait_for_height_sync(self):
while True:
res = self.sync_status()
res, _ = self.sync_status()
if res["indexedHeight"] == res["blockchainHeight"]:
return res["indexedHeight"]
time.sleep(0.5)
Expand Down

0 comments on commit 0dcbf1f

Please sign in to comment.