diff --git a/substrate/client/transaction-pool/src/graph/listener.rs b/substrate/client/transaction-pool/src/graph/listener.rs
index 4c97ffa0cbbd9b546d901e5ac8e16c3d46882641..a5593920eec4053cda1555f81331b16b804304ab 100644
--- a/substrate/client/transaction-pool/src/graph/listener.rs
+++ b/substrate/client/transaction-pool/src/graph/listener.rs
@@ -135,6 +135,7 @@ impl<H: hash::Hash + traits::Member + Serialize + Clone, C: ChainApi> Listener<H
 			None => watcher.dropped(),
 		});
 
+		//note: LimitEnforced could be introduced as new status to get rid of this flag.
 		if limits_enforced {
 			if let Some(ref sink) = self.dropped_by_limits_sink {
 				if let Err(e) = sink.unbounded_send((tx.clone(), TransactionStatus::Dropped)) {