cmd/lncli: add --num_max_routes to queryroutes, default to 10
This commit is contained in:
parent
1879130f64
commit
452d12809e
@ -1721,6 +1721,11 @@ var queryRoutesCommand = cli.Command{
|
|||||||
Name: "amt",
|
Name: "amt",
|
||||||
Usage: "the amount to send expressed in satoshis",
|
Usage: "the amount to send expressed in satoshis",
|
||||||
},
|
},
|
||||||
|
cli.Int64Flag{
|
||||||
|
Name: "num_max_routes",
|
||||||
|
Usage: "the max number of routes to be returned (default: 10)",
|
||||||
|
Value: 10,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
Action: actionDecorator(queryRoutes),
|
Action: actionDecorator(queryRoutes),
|
||||||
}
|
}
|
||||||
@ -1761,8 +1766,9 @@ func queryRoutes(ctx *cli.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
req := &lnrpc.QueryRoutesRequest{
|
req := &lnrpc.QueryRoutesRequest{
|
||||||
PubKey: dest,
|
PubKey: dest,
|
||||||
Amt: amt,
|
Amt: amt,
|
||||||
|
NumRoutes: int32(ctx.Int("num_max_routes")),
|
||||||
}
|
}
|
||||||
|
|
||||||
route, err := client.QueryRoutes(ctxb, req)
|
route, err := client.QueryRoutes(ctxb, req)
|
||||||
|
Loading…
Reference in New Issue
Block a user