core-lightning/plugins
Christian Decker 31c67f1392 bcli: Avoid tal_fmt when handling a raw hex block
We were using `tal_fmt` to truncate off the last byte of the
response (newline), which required an allocation, a call to `vsnprintf` and a
copy of the block contents. This being >2MB in size on mainnet was rather
expensive.

We now just signal the end of the string by overwriting the trailing newline,
and stealing directly onto the result.
2020-09-02 13:21:32 +02:00
..
.gitignore gitignore: extend with recently added build products 2020-02-21 09:44:41 +01:00
autoclean.c plugin: Do not automatically initialize the RPC connection in bcli 2020-07-23 10:14:21 +09:30
bcli.c bcli: Avoid tal_fmt when handling a raw hex block 2020-09-02 13:21:32 +02:00
fundchannel.c fundchannel: provide outnum 2020-08-13 12:37:02 -05:00
keysend.c Makefile: use generic rules to make spec-derived sources. 2020-08-31 21:33:26 -05:00
libplugin-pay.c libplugin-pay: fix default CLTV. 2020-09-02 06:59:13 +09:30
libplugin-pay.h Makefile: use generic rules to make spec-derived sources. 2020-08-31 21:33:26 -05:00
libplugin.c libplugin: do partial parsing instead of memmem hack. 2020-08-21 09:52:33 +09:30
libplugin.h libplugin: allow commands and options to mark themselves deprecated. 2020-08-11 08:43:18 +09:30
Makefile Makefile: normalize all the Makefiles 2020-08-31 21:33:26 -05:00
pay.c plugins/pay: don't bother parsing nodeid for summary. 2020-08-21 09:52:33 +09: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).