Skip to content

Commit

Permalink
Hide xDAI warning
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Sep 30, 2024
1 parent 96dd349 commit 6617104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/harvest/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
vault_contract,
)
from src.common.typings import HarvestParams
from src.common.utils import format_error
from src.common.utils import format_error, warning_verbose
from src.config.networks import GNOSIS_NETWORKS
from src.config.settings import settings

Expand Down Expand Up @@ -55,7 +55,7 @@ async def get_update_state_calls(
try:
await gno_vault_contract.functions.multicall(calls).call()
except (ValueError, ContractLogicError):
logger.warning('xDAI swap failed, excluding from the call.')
warning_verbose('xDAI swap failed, excluding from the call.')
calls.pop()

return [(vault_contract.address, call) for call in calls]

0 comments on commit 6617104

Please sign in to comment.