Fix `Route` serialization round-trip 2024-02-fix-route-ser-121-bindings
authorMatt Corallo <git@bluematt.me>
Fri, 16 Feb 2024 19:26:22 +0000 (19:26 +0000)
committerMatt Corallo <git@bluematt.me>
Fri, 16 Feb 2024 19:55:00 +0000 (19:55 +0000)
commit1036549e2c28975d3d1955a24334b3e7d3108aab
treeafd708638de538a870c39ffb2dfcef08492dc15e
parent2e12d6baa47dd08f8243075281672062b3196995
Fix `Route` serialization round-trip

When the `max_total_routing_fee_msat` parameter was added to
`RouteParameters`, the serialization used `map` to get the max fee,
accidentally writing an `Option<Option<u64>>`, but then read it as
an `Option<u64>`. Thus, any `Route`s with a `route_params` written
will fail to be read back.

Luckily, this is an incredibly rarely-used bit of code, so only one
user managed to hit it.
lightning/src/routing/router.rs