From b3f2a94c3b69ab1becf7dd9b1dbe85d718d1e089 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Thu, 9 Jan 2020 17:57:52 -0800 Subject: [PATCH] lncli: improve last_hop help message Clarifies that last_hop is not the destination, but the penultimate node in the path, i.e. the last intermediary. --- cmd/lncli/commands.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/lncli/commands.go b/cmd/lncli/commands.go index 1f9a5fe4..1af69696 100644 --- a/cmd/lncli/commands.go +++ b/cmd/lncli/commands.go @@ -2087,8 +2087,9 @@ var ( } lastHopFlag = cli.StringFlag{ - Name: "last_hop", - Usage: "pubkey of the last hop to use for this payment", + Name: "last_hop", + Usage: "pubkey of the last hop (penultimate node in the path) " + + "to route through for this payment", } )