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
+
1
11
# 0.0.98 - 2021-06-11
2
12
3
13
0.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 {
160
160
write_tlv_fields ! ( writer, {
161
161
( 0 , payment_preimage, required) ,
162
162
} ) ;
163
- payment_preimage. write ( writer) ?;
164
163
} ,
165
164
& Event :: PaymentFailed { ref payment_hash, ref rejected_by_dest,
166
165
#[ cfg( test) ]
You can’t perform that action at this time.
0 commit comments