From 365dcb211f523747fbea9f74f13049183dbfd555 Mon Sep 17 00:00:00 2001 From: andrewtoth Date: Sun, 31 Mar 2019 17:57:32 -0400 Subject: [PATCH] Update getroute helptext --- lightningd/gossip_control.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lightningd/gossip_control.c b/lightningd/gossip_control.c index 8e7cd5f54..6b8ffdae1 100644 --- a/lightningd/gossip_control.c +++ b/lightningd/gossip_control.c @@ -368,8 +368,10 @@ static const struct json_command getroute_command = { json_getroute, "Show route to {id} for {msatoshi}, using {riskfactor} and optional {cltv} (default 9). " "If specified search from {fromid} otherwise use this node as source. " - "Randomize the route with up to {fuzzpercent} (default 5.0) " - "using {seed} as an arbitrary-size string seed." + "Randomize the route with up to {fuzzpercent} (default 5.0). " + "{exclude} an array of short-channel-id/direction (e.g. [ '564334x877x1/0', '564195x1292x0/1' ]) " + "from consideration. " + "Set the {maxhops} the route can take (default 20)." }; AUTODATA(json_command, &getroute_command);