mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
277ff0f44c
Fixes: #2679 Changelog-Added: JSON-RPC: New `multiwithdraw` command to batch multiple onchain sends in a single transaction. Note it shuffles inputs and outputs, does not use BIP69.
11 lines
318 B
C
11 lines
318 B
C
#ifndef LIGHTNING_PLUGINS_SPENDER_MULTIWITHDRAW_H
|
|
#define LIGHTNING_PLUGINS_SPENDER_MULTIWITHDRAW_H
|
|
#include "config.h"
|
|
|
|
#include <plugins/libplugin.h>
|
|
|
|
extern const struct plugin_command multiwithdraw_commands[];
|
|
extern const size_t num_multiwithdraw_commands;
|
|
|
|
#endif /* LIGHTNING_PLUGINS_SPENDER_MULTIWITHDRAW_H */
|