diff --git a/rpcserver.go b/rpcserver.go index a5e2ad16..c6776ac1 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -3777,16 +3777,13 @@ func marshalDbEdge(edgeInfo *channeldb.ChannelEdgeInfo, c2, c1 = c1, c2 } - var ( - lastUpdate int64 - ) - - if c2 != nil { - lastUpdate = c2.LastUpdate.Unix() - } + var lastUpdate int64 if c1 != nil { lastUpdate = c1.LastUpdate.Unix() } + if c2 != nil && c2.LastUpdate.Unix() > lastUpdate { + lastUpdate = c2.LastUpdate.Unix() + } edge := &lnrpc.ChannelEdge{ ChannelId: edgeInfo.ChannelID,