Skip to content

Commit

Permalink
Log assets with correct symbol
Browse files Browse the repository at this point in the history
Signed-off-by: cyc60 <[email protected]>
  • Loading branch information
cyc60 committed Feb 2, 2024
1 parent fd5ec73 commit 6d500f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/common/startup_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ async def startup_checks():

withdrawable_assets, _ = await get_withdrawable_assets()
logger.info(
'Vault withdrawable assets: %s Eth', round(Web3.from_wei(withdrawable_assets, 'ether'), 2)
'Vault withdrawable assets: %s %s',
round(Web3.from_wei(withdrawable_assets, 'ether'), 2),
settings.network_config.SYMBOL,
)

logger.info('Checking hot wallet balance %s...', hot_wallet.address)
Expand Down

0 comments on commit 6d500f0

Please sign in to comment.