rust-lightning/pending_changelog/relay-constraints-ser.txt
Valentine Wallace ef02b9e6f9
Fix ser for PaymentRelay and PaymentConstraints.
Two fields were serialized as u32/u64 when the spec said *tu32/tu64*.
/facepalm.
2024-03-14 15:26:11 -04:00

7 lines
380 B
Text

## Bug fixes
* LDK previously serialized `PaymentRelay::fee_base_msat` as a u32 when it
should have been serialized as a tu32. Similarly, we were serializing
`PaymentConstraints::htlc_minimum_msat` as a u64 when we should have been
serializing it as tu64. This caused lack of interoperability when using other
implementations as forwarding nodes along blinded payment paths.