mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 21:35:11 +01:00
pylightning: help() accepts an argument.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
0361f43ec3
commit
a1ebfc9e5e
@ -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):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user