pylightning: help() accepts an argument.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2019-02-04 13:29:26 +10:30
parent 0361f43ec3
commit a1ebfc9e5e

View File

@ -241,11 +241,14 @@ class LightningRpc(UnixDomainSocketRpc):
}
return self.call("decodepay", payload)
def help(self):
def help(self, command=None):
"""
Show available commands
Show available commands, or just {command} if supplied.
"""
return self.call("help")
payload = {
"command": command,
}
return self.call("help", payload)
def stop(self):
"""