Skip to content

Commit

Permalink
Hotfix: skip chain
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytrotkk committed Mar 17, 2023
1 parent 203db38 commit 74b2e78
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions proxy/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ def generate_endpoints_for_schain(
schain = schains_internal_contract.functions.schains(schain_hash).call()
schain_options_raw = schains_contract.functions.getOptions(schain_hash).call()

if (schain[0] == 'light-vast-diphda'):
logger.info('HOTFIX: Skipping light-vast-diphda chain')
return

schain_options = parse_schain_options(
raw_options=schain_options_raw
)
Expand Down

0 comments on commit 74b2e78

Please sign in to comment.