Skip to content

Commit

Permalink
database: Don't log receipt in save_block_proof.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyhunsen committed Nov 22, 2024
1 parent 27e228b commit bc1ab13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/database/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ impl Database {
}

/// Sets a block's proof by referring to it by it's hash.
#[tracing::instrument(skip(self), err(level = tracing::Level::ERROR), ret(level = tracing::Level::TRACE))]
#[tracing::instrument(skip(self, proof), err(level = tracing::Level::ERROR), ret(level = tracing::Level::TRACE))]
pub async fn save_block_proof(
&self,
tx: Option<&mut sqlx::Transaction<'_, Postgres>>,
Expand Down

0 comments on commit bc1ab13

Please sign in to comment.