Skip to content

Commit

Permalink
chore: add gas-escalator log as well (#26)
Browse files Browse the repository at this point in the history
instruments the `send_transaction` method of the gas escalator as well,
to match the rest of the middleware
  • Loading branch information
daniel-savu authored Dec 30, 2024
1 parent d28add2 commit 31653ac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ethers-middleware/src/gas_escalator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ where
&self.inner.inner
}

#[instrument(skip(self, tx, block), name = "GasOracle::send_transaction")]
async fn send_transaction<T: Into<TypedTransaction> + Send + Sync>(
&self,
tx: T,
Expand All @@ -210,6 +211,7 @@ where
.await
.map_err(GasEscalatorError::MiddlewareError)?;

tracing::debug!(tx = ?tx, tx_hash = ?pending_tx.tx_hash(), "Sent tx, adding to gas escalator watcher");
// insert the tx in the pending txs
let mut lock = self.txs.lock().await;
lock.push(MonitoredTransaction {
Expand Down

0 comments on commit 31653ac

Please sign in to comment.