From 72de433f5ca24f8e16f960fe1e0d6a0ece7c292c Mon Sep 17 00:00:00 2001 From: JeremyRand Date: Mon, 30 Mar 2020 22:50:25 +0000 Subject: [PATCH] Commands: clarify description of getservers The previous description made it sound like it returned the list of currently connected servers; this clarifies that it's only a list of candidate servers to connect to (no guarantee that they are all currently connected). --- electrum/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/commands.py b/electrum/commands.py index 2cf1ab00d..d2b836296 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -467,7 +467,7 @@ class Commands: @command('n') async def getservers(self): - """Return the list of available servers""" + """Return the list of known servers (candidates for connecting).""" return self.network.get_servers() @command('')