routing/pathfind: fmt whitespace

This commit is contained in:
Conner Fromknecht 2018-07-31 00:19:49 -07:00
parent 1ded697e8d
commit 614b3b3862
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

@ -358,7 +358,7 @@ func newRoute(amtToSend, feeLimit lnwire.MilliSatoshi, sourceVertex Vertex,
// enough capacity to carry the required amount which
// includes the fee dictated at each hop. Make the comparison
// in msat to prevent rounding errors.
if currentHop.AmtToForward + fee > lnwire.NewMSatFromSatoshis(
if currentHop.AmtToForward+fee > lnwire.NewMSatFromSatoshis(
currentHop.Channel.Capacity) {
err := fmt.Sprintf("channel graph has insufficient "+