rgb-cln/plugins
Rusty Russell cd37753849 plugins/bcli: neaten to fix spurious leak report.
```
plugin-bcli: MEMLEAK: 0x1d2a118
plugin-bcli:   label=plugins/bcli.c:636:const char *[]
plugin-bcli:   backtrace:
plugin-bcli:     ccan/ccan/tal/tal.c:442 (tal_alloc_)
plugin-bcli:     ccan/ccan/tal/tal.c:471 (tal_alloc_arr_)
plugin-bcli:     plugins/bcli.c:636 (estimatefees_next)
plugin-bcli:     plugins/bcli.c:684 (estimatefees)
plugin-bcli:     plugins/libplugin.c:1307 (ld_command_handle)
plugin-bcli:     plugins/libplugin.c:1348 (ld_read_json_one)
plugin-bcli:     plugins/libplugin.c:1368 (ld_read_json)
plugin-bcli:     ccan/ccan/io/io.c:59 (next_plan)
plugin-bcli:     ccan/ccan/io/io.c:407 (do_plan)
plugin-bcli:     ccan/ccan/io/io.c:417 (io_ready)
plugin-bcli:     ccan/ccan/io/poll.c:453 (io_loop)
plugin-bcli:     plugins/libplugin.c:1565 (plugin_main)
plugin-bcli:     plugins/bcli.c:965 (main)
plugin-bcli:   parents:
plugin-bcli:     plugins/libplugin.c:1235:struct command
```

It's neater to convert start_bitcoin_cli() to take varargs, and handle take:
the above "leak" is because we don't keep a pointer to the params[] array
which we use to pass to start_bitcoin_cli().

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2022-03-03 10:23:11 +00:00
..
spender coin moves: notify when we make deposits to external accounts 2022-01-26 13:34:45 +10:30
test peer_exchange: set, read and log remote_addr 2022-02-22 05:45:47 +10:30
.gitignore sort alphabetically 2021-06-28 14:43:47 +09:30
Makefile plugins/Makefile: improve header dependencies. 2021-12-01 05:44:28 +10:30
README.md doc: fix wording in plugins/README.md 2020-01-06 12:57:59 +01:00
autoclean.c check: make sure all files outside contrib/ include "config.h" first. 2021-12-06 10:05:39 +10:30
bcli.c plugins/bcli: neaten to fix spurious leak report. 2022-03-03 10:23:11 +00:00
fetchinvoice.c check: make sure all files outside contrib/ include "config.h" first. 2021-12-06 10:05:39 +10:30
funder.c plugin-funder: fix typos in option lease-fee-base-msat and funder-fuzz-percent 2022-03-01 09:38:40 +10:30
funder_policy.c daemons: remove unused functions or make static. 2021-12-06 10:05:39 +10:30
funder_policy.h daemons: remove unused functions or make static. 2021-12-06 10:05:39 +10:30
keysend.c plugins/keysend: prevent leak detecting getting upset. 2022-02-27 07:44:26 +10:30
libplugin-pay.c libplugin-pay: fix spurious leak reports. 2022-02-27 07:44:26 +10:30
libplugin-pay.h libplugin-pay: fix spurious leak reports. 2022-02-27 07:44:26 +10:30
libplugin.c libplugin: make memleak see current requests. 2022-02-27 07:44:26 +10:30
libplugin.h plugins/libplugin.c: Allow freeing notification `struct command *`. 2021-10-08 14:40:04 +10:30
offers.c bitcoin/chainparams.h: Split BIP173 name into onchain and Lightning HRPs. 2021-12-14 11:21:35 +10:30
offers.h lightningd: Send updated onion spec messages. 2021-12-01 05:44:28 +10:30
offers_inv_hook.c check: make sure all files outside contrib/ include "config.h" first. 2021-12-06 10:05:39 +10:30
offers_inv_hook.h gossipd: handle receipt of modern onion message. 2021-12-01 05:44:28 +10:30
offers_invreq_hook.c check: make sure all files outside contrib/ include "config.h" first. 2021-12-06 10:05:39 +10:30
offers_invreq_hook.h gossipd: handle receipt of modern onion message. 2021-12-01 05:44:28 +10:30
offers_offer.c check: make sure all files outside contrib/ include "config.h" first. 2021-12-06 10:05:39 +10:30
offers_offer.h BOLT12: use point32 instead of pubkey32. 2021-10-08 13:47:30 +02:00
pay.c plugins/pay: make memleak happy. 2022-02-27 07:44:26 +10:30
topology.c fix 'listincoming' field incoming_capacity_msat. 2021-12-14 11:19:51 +10:30
txprepare.c coin moves: notify when we make deposits to external accounts 2022-01-26 13:34:45 +10:30

README.md

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).