From 62d6907f641cf9a03434a7f973b964d3fba8bc25 Mon Sep 17 00:00:00 2001 From: Andy Date: Wed, 8 Jan 2025 18:23:00 -0500 Subject: [PATCH] fix: change revert msg to warn (#970) --- crates/builder/src/bundle_sender.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/builder/src/bundle_sender.rs b/crates/builder/src/bundle_sender.rs index f3f018b6a..e036bcd18 100644 --- a/crates/builder/src/bundle_sender.rs +++ b/crates/builder/src/bundle_sender.rs @@ -362,7 +362,7 @@ where .process_bundle_txn_mined(gas_limit, gas_used, is_success); if !is_success { - error!("Bundle transaction {tx_hash:?} reverted onchain"); + warn!("Bundle transaction {tx_hash:?} reverted onchain"); // TODO(danc): handle this case by removing the operations from the pool and updating reputation }