mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
plugins/pay: get our own id during init phase.
We'll want this for routeboost filtering.
This commit is contained in:
committed by
Christian Decker
parent
a8f2f28c72
commit
f85d7d03b8
@@ -22,6 +22,7 @@ PLUGIN_COMMON_OBJS := \
|
|||||||
common/hash_u5.o \
|
common/hash_u5.o \
|
||||||
common/json.o \
|
common/json.o \
|
||||||
common/json_escaped.o \
|
common/json_escaped.o \
|
||||||
|
common/json_helpers.o \
|
||||||
common/json_tok.o \
|
common/json_tok.o \
|
||||||
common/memleak.o \
|
common/memleak.o \
|
||||||
common/param.o \
|
common/param.o \
|
||||||
|
|||||||
@@ -6,6 +6,9 @@
|
|||||||
#include <common/type_to_string.h>
|
#include <common/type_to_string.h>
|
||||||
#include <plugins/libplugin.h>
|
#include <plugins/libplugin.h>
|
||||||
|
|
||||||
|
/* Public key of this node. */
|
||||||
|
static struct pubkey my_id;
|
||||||
|
|
||||||
struct pay_attempt {
|
struct pay_attempt {
|
||||||
const char *route;
|
const char *route;
|
||||||
const char *failure;
|
const char *failure;
|
||||||
@@ -325,6 +328,15 @@ static struct command_result *handle_pay(struct command *cmd,
|
|||||||
" ");
|
" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void init(struct plugin_conn *rpc)
|
||||||
|
{
|
||||||
|
const char *field;
|
||||||
|
|
||||||
|
field = rpc_delve(tmpctx, "getinfo", "", rpc, ".id");
|
||||||
|
if (!pubkey_from_hexstr(field, strlen(field), &my_id))
|
||||||
|
plugin_err("getinfo didn't contain valid id: '%s'", field);
|
||||||
|
}
|
||||||
|
|
||||||
static const struct plugin_command commands[] = { {
|
static const struct plugin_command commands[] = { {
|
||||||
"pay2",
|
"pay2",
|
||||||
"Send payment specified by {bolt11} with {msatoshi}",
|
"Send payment specified by {bolt11} with {msatoshi}",
|
||||||
@@ -335,5 +347,5 @@ static const struct plugin_command commands[] = { {
|
|||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
plugin_main(argv, NULL, commands, ARRAY_SIZE(commands));
|
plugin_main(argv, init, commands, ARRAY_SIZE(commands));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user