routing+lnrpc: add missing query routes parameters

This commit is contained in:
Joost Jager
2020-01-14 11:21:24 +01:00
parent 9c577f3f57
commit 81bf6e15b3
9 changed files with 825 additions and 626 deletions

View File

@@ -2109,7 +2109,7 @@ func TestPathFindSpecExample(t *testing.T) {
carol := ctx.aliases["C"]
const amt lnwire.MilliSatoshi = 4999999
route, err := ctx.router.FindRoute(
bobNode.PubKeyBytes, carol, amt, noRestrictions, nil,
bobNode.PubKeyBytes, carol, amt, noRestrictions, nil, nil,
)
if err != nil {
t.Fatalf("unable to find route: %v", err)
@@ -2164,7 +2164,7 @@ func TestPathFindSpecExample(t *testing.T) {
// We'll now request a route from A -> B -> C.
route, err = ctx.router.FindRoute(
source.PubKeyBytes, carol, amt, noRestrictions, nil,
source.PubKeyBytes, carol, amt, noRestrictions, nil, nil,
)
if err != nil {
t.Fatalf("unable to find routes: %v", err)