core-lightning/plugins
Rusty Russell 7a178ebb7a plugins: libplugin don't insist on 'jsonrpc' field from lightningd.
Spark does this, for example:

{"method":"pay","params":["lnbc..."],"id":22}

Which doesn't have a jsonrpc field.  The result is that the command
doesn't terminate, there is nothing in the logs, stderr contains
"pay: JSON-RPC message does not contain "jsonrpc" field", and
from then on "Unknown command 'pay'".

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2020-02-13 12:34:31 +10:30
..
.gitignore plugins/.gitignore: Add fundchannel entry 2019-09-17 21:05:51 +02:00
autoclean.c libplugin: generalize the plugin_timer callback type 2020-02-12 11:45:07 +10:30
bcli.c plugins/bcli: register Bitcoin-related options 2020-02-12 11:45:07 +10:30
fundchannel.c libplugin: use json_stream for all plugins' commands 2020-02-10 09:49:15 +10:30
libplugin.c plugins: libplugin don't insist on 'jsonrpc' field from lightningd. 2020-02-13 12:34:31 +10:30
libplugin.h libplugin: generalize the plugin_timer callback type 2020-02-12 11:45:07 +10:30
Makefile plugins/bcli: a new plugin for gathering Bitcoin data 2020-02-12 11:45:07 +10:30
pay.c libplugin: use json_stream for all plugins' commands 2020-02-10 09:49:15 +10:30
README.md doc: fix wording in plugins/README.md 2020-01-06 12:57:59 +01:00

Plugin Directory

Any file in this directory which is executable and whose name only consists of alphanumeric characters, space, '.', '-' or '_' will be automatically loaded when lightningd starts (unless suppressed with commandline options).