Skip to content

Commit

Permalink
Fix logging in submit_harvest_transaction (#355)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise authored and tsudmi committed Jul 6, 2024
1 parent e260b40 commit 8799a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/harvest/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@


async def submit_harvest_transaction(harvest_params: HarvestParams) -> HexStr | None:
logger.info('Submitting harvest transaction...')
tx_hash = None

if settings.network in GNO_NETWORKS:
Expand Down Expand Up @@ -59,6 +58,7 @@ async def _eth_submit_harvest_transaction(harvest_params: HarvestParams) -> HexS


async def _gno_submit_harvest_transaction(harvest_params: HarvestParams) -> HexStr | None:
logger.info('Submitting harvest transaction...')
gno_vault_contract = get_gno_vault_contract()
update_state_calls = gno_vault_contract.get_update_state_calls(harvest_params)

Expand Down

0 comments on commit 8799a64

Please sign in to comment.