mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-23 17:14:22 +01:00
Add optional from id parameter to getroute call.
This commit is contained in:
@@ -296,7 +296,9 @@ static void json_getroute_reply(struct subd *gossip, const u8 *reply, const int
|
||||
static void json_getroute(struct command *cmd, const char *buffer, const jsmntok_t *params)
|
||||
{
|
||||
struct pubkey id;
|
||||
jsmntok_t *idtok, *msatoshitok, *riskfactortok, *cltvtok;
|
||||
struct pubkey from_id;
|
||||
struct pubkey *from_id_to_use;
|
||||
jsmntok_t *idtok, *msatoshitok, *riskfactortok, *cltvtok, *fromidtok;
|
||||
u64 msatoshi;
|
||||
unsigned cltv = 9;
|
||||
double riskfactor;
|
||||
@@ -307,6 +309,7 @@ static void json_getroute(struct command *cmd, const char *buffer, const jsmntok
|
||||
"msatoshi", &msatoshitok,
|
||||
"riskfactor", &riskfactortok,
|
||||
"?cltv", &cltvtok,
|
||||
"?fromid", &fromidtok,
|
||||
NULL)) {
|
||||
return;
|
||||
}
|
||||
@@ -334,7 +337,18 @@ static void json_getroute(struct command *cmd, const char *buffer, const jsmntok
|
||||
buffer + riskfactortok->start);
|
||||
return;
|
||||
}
|
||||
u8 *req = towire_gossip_getroute_request(cmd, &ld->id, &id, msatoshi, riskfactor*1000, cltv);
|
||||
|
||||
if (fromidtok) {
|
||||
if (!json_tok_pubkey(buffer, fromidtok, &from_id)) {
|
||||
command_fail(cmd, "Invalid from id");
|
||||
return;
|
||||
}
|
||||
from_id_to_use = &from_id;
|
||||
} else {
|
||||
from_id_to_use = &ld->id;
|
||||
}
|
||||
|
||||
u8 *req = towire_gossip_getroute_request(cmd, from_id_to_use, &id, msatoshi, riskfactor*1000, cltv);
|
||||
subd_req(ld->gossip, ld->gossip, req, -1, 0, json_getroute_reply, cmd);
|
||||
command_still_pending(cmd);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user