Skip to content

Commit 176b728

Browse files
Fix check_gas_price just message
1 parent 923d3a5 commit 176b728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/execution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async def check_gas_price() -> bool:
100100
if max_fee_per_gas >= Web3.to_wei(settings.max_fee_per_gas_gwei, 'gwei'):
101101
logging.warning(
102102
'Current gas price (%s gwei) is too high. '
103-
'Will try to harvest on the next block if the gas '
103+
'Will try to submit transaction on the next block if the gas '
104104
'price is acceptable.',
105105
Web3.from_wei(max_fee_per_gas, 'gwei'),
106106
)

0 commit comments

Comments
 (0)