ZmnSCPxj jxPCSnmZ
4 years ago
committed by
Rusty Russell
3 changed files with 47 additions and 3 deletions
@ -0,0 +1,33 @@ |
|||
#include <common/utils.h> |
|||
#include <plugins/libplugin.h> |
|||
|
|||
/*~ The spender plugin contains various commands that handle
|
|||
* spending from the onchain wallet. */ |
|||
|
|||
static |
|||
void spender_init(struct plugin *p, const char *b, const jsmntok_t *t) |
|||
{ |
|||
/* whatever_init(p, b, t); */ |
|||
} |
|||
|
|||
int main(int argc, char **argv) |
|||
{ |
|||
char *owner = tal(NULL, char); |
|||
struct plugin_command *commands; |
|||
|
|||
setup_locale(); |
|||
|
|||
commands = tal_arr(owner, struct plugin_command, 0); |
|||
|
|||
/* tal_expand(&commands, whatever_commands, num_whatever_commands); */ |
|||
|
|||
plugin_main(argv, &spender_init, PLUGIN_STATIC, true, |
|||
NULL, |
|||
commands, tal_count(commands), |
|||
NULL, 0, |
|||
NULL, 0, |
|||
NULL); |
|||
|
|||
tal_free(owner); |
|||
return 0; |
|||
} |
Loading…
Reference in new issue