diff --git a/eth-bytecode-db/verifier-alliance-database/src/helpers.rs b/eth-bytecode-db/verifier-alliance-database/src/helpers.rs index bed19fed6..3df290d42 100644 --- a/eth-bytecode-db/verifier-alliance-database/src/helpers.rs +++ b/eth-bytecode-db/verifier-alliance-database/src/helpers.rs @@ -49,12 +49,6 @@ macro_rules! insert_then_select { ).await.context(format!("update on conflict in \"{}\"", stringify!($entity_module)))?; if updated_model != model { - // tracing::warn!( - // model=?model, - // updated_model=?updated_model, - // "the \"{}\" model has been updated", - // stringify!($entity_module) - // ); model = updated_model; } }