File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1+ # 0.0.99 - WIP
2+
3+ ## Serialization Compatibility
4+
5+ * Due to a bug discovered in 0.0.98, if a ` ChannelManager ` is serialized on
6+ version 0.0.98 while an ` Event::PaymentSent ` is pending processing, the
7+ ` ChannelManager ` will fail to deserialize both on version 0.0.98 and later
8+ versions. If you have such a ` ChannelManager ` available, a simple patch will
9+ allow it to deserialize, please file an issue if you need assistance.
10+
111# 0.0.98 - 2021-06-11
212
3130.0.98 should be considered a release candidate to the first alpha release of
Original file line number Diff line number Diff line change @@ -160,7 +160,6 @@ impl Writeable for Event {
160160 write_tlv_fields ! ( writer, {
161161 ( 0 , payment_preimage, required) ,
162162 } ) ;
163- payment_preimage. write ( writer) ?;
164163 } ,
165164 & Event :: PaymentFailed { ref payment_hash, ref rejected_by_dest,
166165 #[ cfg( test) ]
You can’t perform that action at this time.
0 commit comments