thelp function for python console - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit d6f4b57d64566484e7edf0a40c5e555875462178 DIR parent a1a4fe8e92e4210d9609c354073116910dd48f28 HTML Author: ThomasV <thomasv@gitorious> Date: Sat, 30 May 2015 19:13:28 +0200 help function for python console Diffstat: M lib/commands.py | 3 +++ 1 file changed, 3 insertions(+), 0 deletions(-) --- DIR diff --git a/lib/commands.py b/lib/commands.py t@@ -249,6 +249,9 @@ class Commands: apply(self._callback, ()) return result + def help(self): + return sorted(known_commands.keys()) + def make_seed(self, nbits, custom_entropy, language): from mnemonic import Mnemonic s = Mnemonic(language).make_seed(nbits, custom_entropy=custom_entropy)