We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5649c0b commit 6719e86Copy full SHA for 6719e86
solana-transaction-utils/src/tx_tracker.rs
@@ -84,11 +84,11 @@ impl<T: Send + Clone + std::fmt::Debug> TxTracker<T> {
84
}
85
86
pub async fn run(mut self, handle: SubsystemHandle) -> Result<(), crate::error::Error> {
87
- info!("starting tx tracker cache");
+ info!("starting tx tracker");
88
loop {
89
tokio::select! {
90
_ = handle.on_shutdown_requested() => {
91
- info!("shutting down task queue cache");
+ info!("shutting down tx tracker");
92
break;
93
94
Some(req) = self.receiver.recv() => {
0 commit comments