osmosis-labs / osmosis-rust

Rust libraries for osmosis
Apache License 2.0
59 stars 52 forks source link

Fix serialization/deserialization for Option #113

Closed shapeshed closed 3 months ago

shapeshed commented 3 months ago

The previous implementation threw a type error.

| ::serde::Serialize, | ^^^^^^^^^^^^^^^^^^ expected &[u8], found &Option<Vec<u8>>

This adds custom serde functions and an additional transformer to handle the option correctly.