You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
Encode RawLSPSMessage's payload without length prefix
Previously, we'd decode/encode `payload` with `String`'s default
encoding, which prepends the lenght. However, according to BOLT8/LSPS0
describe the payload as: "A variable-length message payload (the
remainder of the message).", i.e., without any prepended lenght.
Here, we fix this de/ser bug by encoding and decoding the payload using
LDK's `WithoutLength` helper.
0 commit comments