discovery/chan_series: use netann.ChannelUpdateFromEdge helper
This commit is contained in:
parent
7b0d564692
commit
089ac647d8
@ -324,20 +324,7 @@ func (c *ChanSeries) FetchChanUpdates(chain chainhash.Hash,
|
|||||||
|
|
||||||
chanUpdates := make([]*lnwire.ChannelUpdate, 0, 2)
|
chanUpdates := make([]*lnwire.ChannelUpdate, 0, 2)
|
||||||
if e1 != nil {
|
if e1 != nil {
|
||||||
chanUpdate := &lnwire.ChannelUpdate{
|
chanUpdate, err := netann.ChannelUpdateFromEdge(chanInfo, e1)
|
||||||
ChainHash: chanInfo.ChainHash,
|
|
||||||
ShortChannelID: shortChanID,
|
|
||||||
Timestamp: uint32(e1.LastUpdate.Unix()),
|
|
||||||
MessageFlags: e1.MessageFlags,
|
|
||||||
ChannelFlags: e1.ChannelFlags,
|
|
||||||
TimeLockDelta: e1.TimeLockDelta,
|
|
||||||
HtlcMinimumMsat: e1.MinHTLC,
|
|
||||||
HtlcMaximumMsat: e1.MaxHTLC,
|
|
||||||
BaseFee: uint32(e1.FeeBaseMSat),
|
|
||||||
FeeRate: uint32(e1.FeeProportionalMillionths),
|
|
||||||
ExtraOpaqueData: e1.ExtraOpaqueData,
|
|
||||||
}
|
|
||||||
chanUpdate.Signature, err = lnwire.NewSigFromRawSignature(e1.SigBytes)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@ -345,20 +332,7 @@ func (c *ChanSeries) FetchChanUpdates(chain chainhash.Hash,
|
|||||||
chanUpdates = append(chanUpdates, chanUpdate)
|
chanUpdates = append(chanUpdates, chanUpdate)
|
||||||
}
|
}
|
||||||
if e2 != nil {
|
if e2 != nil {
|
||||||
chanUpdate := &lnwire.ChannelUpdate{
|
chanUpdate, err := netann.ChannelUpdateFromEdge(chanInfo, e2)
|
||||||
ChainHash: chanInfo.ChainHash,
|
|
||||||
ShortChannelID: shortChanID,
|
|
||||||
Timestamp: uint32(e2.LastUpdate.Unix()),
|
|
||||||
MessageFlags: e2.MessageFlags,
|
|
||||||
ChannelFlags: e2.ChannelFlags,
|
|
||||||
TimeLockDelta: e2.TimeLockDelta,
|
|
||||||
HtlcMinimumMsat: e2.MinHTLC,
|
|
||||||
HtlcMaximumMsat: e2.MaxHTLC,
|
|
||||||
BaseFee: uint32(e2.FeeBaseMSat),
|
|
||||||
FeeRate: uint32(e2.FeeProportionalMillionths),
|
|
||||||
ExtraOpaqueData: e2.ExtraOpaqueData,
|
|
||||||
}
|
|
||||||
chanUpdate.Signature, err = lnwire.NewSigFromRawSignature(e2.SigBytes)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user