1
Why is the description field in a Lightning Network invoice limited to 639 bytes?
https://github.com/lightningnetwork/lightning-rfc/blob/master/11-payment-encoding.md#tagged-fields
https://github.com/lightningnetwork/lnd/blob/95502da7e87d7f1ae96e9d69fcdb2f1b038d6497/channeldb/invoices.go#L85 (LND limits it to 1024)
I would like to send data over the lightning network using the description field for the anonymizing aspects of onion routing in conjunction with the economic incentive for honest nodes.
Ah thank you for your answer, I understand now, it is due to the number of bits on
data_length. – ascendzor – 2019-09-17T05:23:27.093