mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
2fc8e9d617
We know that onion blobs in lightning are _exactly_ 1366 bytes in lightning, but they are currently expressed as a byte slice in channeldb's HTLC struct. Blobs are currently serialized as var bytes, so we can take advantage of this known length and variable length to add additional data to the inline serialization of our HTLCs, which are otherwise not easily extensible (without creating a new bucket).
17 lines
317 B
Go
17 lines
317 B
Go
package lnmock
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
)
|
|
|
|
// MockOnion returns a mock onion payload.
|
|
func MockOnion() [lnwire.OnionPacketSize]byte {
|
|
var onion [lnwire.OnionPacketSize]byte
|
|
onionBlob := bytes.Repeat([]byte{1}, lnwire.OnionPacketSize)
|
|
copy(onion[:], onionBlob)
|
|
|
|
return onion
|
|
}
|