From 40281a3193e7d3b6da5b03ea1196fa29a2452258 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 29 Feb 2016 09:57:56 +0100 Subject: [PATCH] restore 'help' command for the python console --- lib/commands.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/commands.py b/lib/commands.py index ea65d65b9..9294e67db 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -614,6 +614,11 @@ class Commands: self.network.send([('blockchain.address.subscribe', [address])], callback) return True + @command('') + def help(self): + # for the python console + return sorted(known_commands.keys()) + param_descriptions = { 'privkey': 'Private key. Type \'?\' to get a prompt.', 'destination': 'Bitcoin address, contact or alias',