diff --git a/lbrynet/lbrynet_daemon/LBRYDaemon.py b/lbrynet/lbrynet_daemon/LBRYDaemon.py
index 70ebeae97..cf0188a1f 100644
--- a/lbrynet/lbrynet_daemon/LBRYDaemon.py
+++ b/lbrynet/lbrynet_daemon/LBRYDaemon.py
@@ -1889,7 +1889,7 @@ class LBRYDaemon(jsonrpc.JSONRPC):
 
     def jsonrpc_search_nametrie(self, p):
         """
-        Search the nametrie for claims beginning with search (yes, this is a dumb search, it'll be made better)
+        Search the nametrie for claims
 
         Args:
             'search': search query, string
@@ -1897,6 +1897,8 @@ class LBRYDaemon(jsonrpc.JSONRPC):
             List of search results
         """
 
+        # TODO: change this function to "search", and use cached stream size info from the search server
+
         if 'search' in p.keys():
             search = p['search']
         else: