4444 // On scroll, transactions are forwarded directly to the sequencer to be included in
4545 // blocks that it builds.
4646 if let Some ( client) = self . raw_tx_forwarder ( ) . as_ref ( ) {
47- tracing:: debug!( target: "rpc::eth" , hash = %pool_transaction. hash( ) , "forwarding raw transaction to sequencer" ) ;
47+ tracing:: debug!( target: "scroll:: rpc::eth" , hash = %pool_transaction. hash( ) , "forwarding raw transaction to sequencer" ) ;
4848
4949 // Retain tx in local tx pool before forwarding to sequencer rpc, for local RPC usage.
5050 let hash = self
@@ -53,15 +53,15 @@ where
5353 . await
5454 . map_err ( Self :: Error :: from_eth_err) ?;
5555
56- tracing:: debug!( target: "rpc::eth" , %hash, "successfully added transaction to local tx pool" ) ;
56+ tracing:: debug!( target: "scroll:: rpc::eth" , %hash, "successfully added transaction to local tx pool" ) ;
5757
5858 // Forward to remote sequencer RPC.
5959 match client. forward_raw_transaction ( & tx) . await {
6060 Ok ( sequencer_hash) => {
61- tracing:: debug!( target: "rpc::eth" , local_hash=%hash, sequencer_hash=%sequencer_hash, "successfully forwarded transaction to sequencer" ) ;
61+ tracing:: debug!( target: "scroll:: rpc::eth" , local_hash=%hash, sequencer_hash=%sequencer_hash, "successfully forwarded transaction to sequencer" ) ;
6262 }
6363 Err ( err) => {
64- tracing:: warn!( target: "rpc::eth" , %err, %hash, "failed to forward transaction to sequencer, but transaction is in local pool" ) ;
64+ tracing:: warn!( target: "scroll:: rpc::eth" , %err, %hash, "failed to forward transaction to sequencer, but transaction is in local pool" ) ;
6565 }
6666 }
6767
0 commit comments