We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a0cf086 + 9236d22 commit e1e6690Copy full SHA for e1e6690
crates/shared/src/gas_price_estimation/driver.rs
@@ -81,13 +81,11 @@ impl DriverGasEstimator {
81
if let Some(cached) = cache.as_ref()
82
&& cached.timestamp.elapsed() < CACHE_DURATION
83
{
84
- tracing::debug!(gasPrice = ?cached.price, "returning cached gas price");
85
return Ok(cached.price);
86
}
87
88
// Cache miss or expired, fetch new price and update cache
89
let price = self.fetch_gas_price().await?;
90
- tracing::debug!(gasPrice = ?price, "fetched fresh gas price from driver");
91
92
*cache = Some(CachedGasPrice {
93
price,
0 commit comments