lncli: update SendToRoute to also parse new route format
This commit is contained in:
parent
6328b2e989
commit
03d33cbd6b
@ -21,6 +21,7 @@ import (
|
|||||||
"github.com/golang/protobuf/jsonpb"
|
"github.com/golang/protobuf/jsonpb"
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
"github.com/lightningnetwork/lnd/lnrpc"
|
"github.com/lightningnetwork/lnd/lnrpc"
|
||||||
|
"github.com/lightningnetwork/lnd/lnrpc/routerrpc"
|
||||||
"github.com/lightningnetwork/lnd/walletunlocker"
|
"github.com/lightningnetwork/lnd/walletunlocker"
|
||||||
"github.com/urfave/cli"
|
"github.com/urfave/cli"
|
||||||
"golang.org/x/crypto/ssh/terminal"
|
"golang.org/x/crypto/ssh/terminal"
|
||||||
@ -2381,22 +2382,23 @@ var sendToRouteCommand = cli.Command{
|
|||||||
Usage: "Send a payment over a predefined route.",
|
Usage: "Send a payment over a predefined route.",
|
||||||
Description: `
|
Description: `
|
||||||
Send a payment over Lightning using a specific route. One must specify
|
Send a payment over Lightning using a specific route. One must specify
|
||||||
a list of routes to attempt and the payment hash. This command can even
|
the route to attempt and the payment hash. This command can even
|
||||||
be chained with the response to queryroutes. This command can be used
|
be chained with the response to queryroutes or buildroute. This command
|
||||||
to implement channel rebalancing by crafting a self-route, or even
|
can be used to implement channel rebalancing by crafting a self-route,
|
||||||
atomic swaps using a self-route that crosses multiple chains.
|
or even atomic swaps using a self-route that crosses multiple chains.
|
||||||
|
|
||||||
There are three ways to specify routes:
|
There are three ways to specify a route:
|
||||||
* using the --routes parameter to manually specify a JSON encoded
|
* using the --routes parameter to manually specify a JSON encoded
|
||||||
set of routes in the format of the return value of queryroutes:
|
route in the format of the return value of queryroutes or
|
||||||
|
buildroute:
|
||||||
(lncli sendtoroute --payment_hash=<pay_hash> --routes=<route>)
|
(lncli sendtoroute --payment_hash=<pay_hash> --routes=<route>)
|
||||||
|
|
||||||
* passing the routes as a positional argument:
|
* passing the route as a positional argument:
|
||||||
(lncli sendtoroute --payment_hash=pay_hash <route>)
|
(lncli sendtoroute --payment_hash=pay_hash <route>)
|
||||||
|
|
||||||
* or reading in the routes from stdin, which can allow chaining the
|
* or reading in the route from stdin, which can allow chaining the
|
||||||
response from queryroutes, or even read in a file with a set of
|
response from queryroutes or buildroute, or even read in a file
|
||||||
pre-computed routes:
|
with a pre-computed route:
|
||||||
(lncli queryroutes --args.. | lncli sendtoroute --payment_hash= -
|
(lncli queryroutes --args.. | lncli sendtoroute --payment_hash= -
|
||||||
|
|
||||||
notice the '-' at the end, which signals that lncli should read
|
notice the '-' at the end, which signals that lncli should read
|
||||||
@ -2474,13 +2476,13 @@ func sendToRoute(ctx *cli.Context) error {
|
|||||||
jsonRoutes = string(b)
|
jsonRoutes = string(b)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Try to parse the provided json both in the legacy QueryRoutes format
|
||||||
|
// that contains a list of routes and the single route BuildRoute
|
||||||
|
// format.
|
||||||
|
var route *lnrpc.Route
|
||||||
routes := &lnrpc.QueryRoutesResponse{}
|
routes := &lnrpc.QueryRoutesResponse{}
|
||||||
err = jsonpb.UnmarshalString(jsonRoutes, routes)
|
err = jsonpb.UnmarshalString(jsonRoutes, routes)
|
||||||
if err != nil {
|
if err == nil {
|
||||||
return fmt.Errorf("unable to unmarshal json string "+
|
|
||||||
"from incoming array of routes: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(routes.Routes) == 0 {
|
if len(routes.Routes) == 0 {
|
||||||
return fmt.Errorf("no routes provided")
|
return fmt.Errorf("no routes provided")
|
||||||
}
|
}
|
||||||
@ -2490,9 +2492,21 @@ func sendToRoute(ctx *cli.Context) error {
|
|||||||
len(routes.Routes))
|
len(routes.Routes))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
route = routes.Routes[0]
|
||||||
|
} else {
|
||||||
|
routes := &routerrpc.BuildRouteResponse{}
|
||||||
|
err = jsonpb.UnmarshalString(jsonRoutes, routes)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("unable to unmarshal json string "+
|
||||||
|
"from incoming array of routes: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
route = routes.Route
|
||||||
|
}
|
||||||
|
|
||||||
req := &lnrpc.SendToRouteRequest{
|
req := &lnrpc.SendToRouteRequest{
|
||||||
PaymentHash: rHash,
|
PaymentHash: rHash,
|
||||||
Route: routes.Routes[0],
|
Route: route,
|
||||||
}
|
}
|
||||||
|
|
||||||
return sendToRouteRequest(ctx, req)
|
return sendToRouteRequest(ctx, req)
|
||||||
|
Loading…
Reference in New Issue
Block a user