Skip to content

Commit

Permalink
skip_all not only skip(self)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperFluffy committed Dec 4, 2024
1 parent c4ea203 commit 82e401a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/astria-auctioneer/src/auctioneer/inner/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ impl Inner {
res
}

#[instrument(skip(self), fields(block_hash = field::Empty), err)]
#[instrument(skip_all, fields(block_hash = field::Empty), err)]
fn handle_optimistic_block(
&mut self,
optimistic_block: eyre::Result<FilteredSequencerBlock>,
Expand Down Expand Up @@ -252,7 +252,7 @@ impl Inner {
Ok(())
}

#[instrument(skip(self), fields(block_hash = field::Empty), err)]
#[instrument(skip_all, fields(block_hash = field::Empty), err)]
fn handle_block_commitment(
&mut self,
commitment: eyre::Result<crate::block::Commitment>,
Expand All @@ -275,7 +275,7 @@ impl Inner {
Ok(())
}

#[instrument(skip(self), fields(block_hash = field::Empty), err)]
#[instrument(skip_all, fields(block_hash = field::Empty), err)]
fn handle_executed_block(
&mut self,
executed_block: eyre::Result<crate::block::Executed>,
Expand All @@ -302,7 +302,7 @@ impl Inner {
Ok(())
}

#[instrument(skip(self), fields(block_hash = field::Empty), err)]
#[instrument(skip_all, fields(block_hash = field::Empty), err)]
fn handle_bundle(&mut self, bundle: eyre::Result<crate::bundle::Bundle>) -> eyre::Result<()> {
let bundle = Arc::new(bundle.wrap_err("received problematic bundle")?);
Span::current().record(
Expand Down

0 comments on commit 82e401a

Please sign in to comment.