Merge pull request #3081 from halseth/route-remove-totalfees

routing/route+multi: remove redundant TotalFees field
This commit is contained in:
Johan T. Halseth
2019-05-20 15:00:01 +02:00
committed by GitHub
8 changed files with 17 additions and 18 deletions

View File

@@ -198,7 +198,7 @@ func TestFindRoutesWithFeeLimit(t *testing.T) {
t.Fatalf("unable to find any routes: %v", err)
}
if route.TotalFees > restrictions.FeeLimit {
if route.TotalFees() > restrictions.FeeLimit {
t.Fatalf("route exceeded fee limit: %v", spew.Sdump(route))
}