Skip to content

Commit 4b16c29

Browse files
authored
Merge pull request #9383 from ziggie1984/bugfix-createmissingedge
bugfix createmissingedge
2 parents e9dd01b + e008190 commit 4b16c29

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

routing/localchans/manager.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,16 @@ func (r *Manager) createEdge(channel *channeldb.OpenChannel,
311311
err)
312312
}
313313

314+
// We need to make sure we use the real scid for public confirmed
315+
// zero-conf channels.
316+
shortChanID := channel.ShortChanID()
317+
isPublic := channel.ChannelFlags&lnwire.FFAnnounceChannel != 0
318+
if isPublic && channel.IsZeroConf() && channel.ZeroConfConfirmed() {
319+
shortChanID = channel.ZeroConfRealScid()
320+
}
321+
314322
info := &models.ChannelEdgeInfo{
315-
ChannelID: channel.ShortChanID().ToUint64(),
323+
ChannelID: shortChanID.ToUint64(),
316324
ChainHash: channel.ChainHash,
317325
Features: featureBuf.Bytes(),
318326
Capacity: channel.Capacity,
@@ -328,7 +336,7 @@ func (r *Manager) createEdge(channel *channeldb.OpenChannel,
328336
// be updated with the new values in the call to processChan below.
329337
timeLockDelta := uint16(r.DefaultRoutingPolicy.TimeLockDelta)
330338
edge := &models.ChannelEdgePolicy{
331-
ChannelID: channel.ShortChanID().ToUint64(),
339+
ChannelID: shortChanID.ToUint64(),
332340
LastUpdate: timestamp,
333341
TimeLockDelta: timeLockDelta,
334342
ChannelFlags: channelFlags,

0 commit comments

Comments
 (0)