File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
crates/core/src/transaction/queue_system Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ async fn continuously_process_pending_transactions(
100100 break ;
101101 }
102102 _ => {
103- error!( "PENDING QUEUE ERROR: {}" , e)
103+ error!( "Relayer id {} - PENDING QUEUE ERROR: {}" , relayer_id , e)
104104 }
105105 }
106106 }
@@ -146,7 +146,7 @@ async fn continuously_process_inmempool_transactions(
146146 break ;
147147 }
148148 _ => {
149- error!( "INMEMPOOL ERROR: {}" , e)
149+ error!( "Relayer id {} - INMEMPOOL QUEUE ERROR: {}" , relayer_id , e)
150150 }
151151 }
152152 }
@@ -192,7 +192,7 @@ async fn continuously_process_mined_transactions(
192192 break ;
193193 }
194194 _ => {
195- error!( "MINED ERROR: {}" , e)
195+ error!( "Relayer id {} - MINED QUEUE ERROR: {}" , relayer_id , e)
196196 }
197197 }
198198 }
You can’t perform that action at this time.
0 commit comments