From 5c52efc0eba3e69939197831212065afb00f3cf8 Mon Sep 17 00:00:00 2001 From: Joost Jager Date: Mon, 5 Aug 2019 11:49:46 +0200 Subject: [PATCH] lnrpc/routerrpc: fix line wrap --- lnrpc/routerrpc/router_backend.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lnrpc/routerrpc/router_backend.go b/lnrpc/routerrpc/router_backend.go index d4d1d8e27..8d8a22085 100644 --- a/lnrpc/routerrpc/router_backend.go +++ b/lnrpc/routerrpc/router_backend.go @@ -62,12 +62,12 @@ type MissionControl interface { GetEdgeProbability(fromNode route.Vertex, edge routing.EdgeLocator, amt lnwire.MilliSatoshi) float64 - // ResetHistory resets the history of MissionControl returning it to a state as - // if no payment attempts have been made. + // ResetHistory resets the history of MissionControl returning it to a + // state as if no payment attempts have been made. ResetHistory() error - // GetHistorySnapshot takes a snapshot from the current mission control state - // and actual probability estimates. + // GetHistorySnapshot takes a snapshot from the current mission control + // state and actual probability estimates. GetHistorySnapshot() *routing.MissionControlSnapshot }