mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
discovery/gossiper_test: set ChannelUpdate max htlc
In this commit, we alter the gossiper test's helper method that creates channel updates to include the max htlc field in the ChannelUpdates it creates. Co-authored-by: Johan T. Halseth <johanth@gmail.com>
This commit is contained in:
parent
7ab8900eb6
commit
f316cc6c7e
1 changed files with 7 additions and 2 deletions
|
@ -453,15 +453,20 @@ func createUpdateAnnouncement(blockHeight uint32,
|
|||
|
||||
var err error
|
||||
|
||||
htlcMinMsat := lnwire.MilliSatoshi(prand.Int63())
|
||||
a := &lnwire.ChannelUpdate{
|
||||
ShortChannelID: lnwire.ShortChannelID{
|
||||
BlockHeight: blockHeight,
|
||||
},
|
||||
Timestamp: timestamp,
|
||||
MessageFlags: 0,
|
||||
MessageFlags: lnwire.ChanUpdateOptionMaxHtlc,
|
||||
ChannelFlags: flags,
|
||||
TimeLockDelta: uint16(prand.Int63()),
|
||||
HtlcMinimumMsat: lnwire.MilliSatoshi(prand.Int63()),
|
||||
HtlcMinimumMsat: htlcMinMsat,
|
||||
|
||||
// Since the max HTLC must be greater than the min HTLC to pass channel
|
||||
// update validation, set it to double the min htlc.
|
||||
HtlcMaximumMsat: 2 * htlcMinMsat,
|
||||
FeeRate: uint32(prand.Int31()),
|
||||
BaseFee: uint32(prand.Int31()),
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue