We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e09c830 commit f1e0735Copy full SHA for f1e0735
eclair-core/src/main/scala/fr/acinq/eclair/wire/protocol/OfferTypes.scala
@@ -220,7 +220,7 @@ object OfferTypes {
220
tlv.tag <= UInt64(79) || (tlv.tag >= UInt64(1000000000) && tlv.tag <= UInt64(1999999999))
221
222
private def isInvoiceRequestTlv(tlv: GenericTlv): Boolean =
223
- // Offer TLVs are in the range [0, 159] or [1000000000, 2999999999].
+ // Invoice request TLVs are in the range [0, 159] or [1000000000, 2999999999].
224
tlv.tag <= UInt64(159) || (tlv.tag >= UInt64(1000000000) && tlv.tag <= UInt64(2999999999L))
225
226
def filterOfferFields(tlvs: TlvStream[InvoiceRequestTlv]): TlvStream[OfferTlv] =
0 commit comments