Skip to content

Commit e1e6690

Browse files
authored
Merge branch 'cowprotocol:main' into main
2 parents a0cf086 + 9236d22 commit e1e6690

File tree

1 file changed

+0
-2
lines changed
  • crates/shared/src/gas_price_estimation

1 file changed

+0
-2
lines changed

crates/shared/src/gas_price_estimation/driver.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,11 @@ impl DriverGasEstimator {
8181
if let Some(cached) = cache.as_ref()
8282
&& cached.timestamp.elapsed() < CACHE_DURATION
8383
{
84-
tracing::debug!(gasPrice = ?cached.price, "returning cached gas price");
8584
return Ok(cached.price);
8685
}
8786

8887
// Cache miss or expired, fetch new price and update cache
8988
let price = self.fetch_gas_price().await?;
90-
tracing::debug!(gasPrice = ?price, "fetched fresh gas price from driver");
9189

9290
*cache = Some(CachedGasPrice {
9391
price,

0 commit comments

Comments
 (0)