We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06944ef commit 122ecc2Copy full SHA for 122ecc2
src/exits/tasks.py
@@ -39,8 +39,9 @@ async def update_exit_signatures(
39
logger.info('Waiting for signatures update block %d to finalize...', update_block)
40
return
41
42
- if update_block:
43
- await _check_majority_oracles_synced(oracles, update_block)
+ if update_block and not await _check_majority_oracles_synced(oracles, update_block):
+ logger.info('Waiting for the majority of oracles to sync exit signatures')
44
+ return
45
46
outdated_indexes = await _fetch_outdated_indexes(oracles, update_block)
47
if outdated_indexes:
0 commit comments