diff --git a/client/transaction-pool/graph/src/pool.rs b/client/transaction-pool/graph/src/pool.rs
index c6e33223282ffb53970ef728d8d1b9a5ce6a2eff..cc1751102dece1d1e5567cf68f6500cef78308ae 100644
--- a/client/transaction-pool/graph/src/pool.rs
+++ b/client/transaction-pool/graph/src/pool.rs
@@ -279,7 +279,10 @@ impl<B: ChainApi> Pool<B> {
 			)))
 	}
 
-	/// Return an event stream of transactions imported to the pool.
+	/// Return an event stream of notifications for when transactions are imported to the pool.
+	/// 
+	/// Consumers of this stream should use the `ready` method to actually get the
+	/// pending transactions in the right order.
 	pub fn import_notification_stream(&self) -> EventStream {
 		self.validated_pool.import_notification_stream()
 	}