You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even with my most recent PRs this is still incorrect, to fix this will require special de-serializing logic for Vec<u8> kinda like we have done in deserialize_tuple.
A work around is to use serde_with::Bytes which is more efficient anyway.
The text was updated successfully, but these errors were encountered:
When de-serializing a sequence this crate goes straight to
dispatch_based_on_marker
:monero-epee-bin-serde/src/de.rs
Lines 433 to 439 in 0dd0451
This is wrong for a byte array which is tagged as a string:
monero-epee-bin-serde/src/de.rs
Lines 84 to 106 in 0dd0451
Even with my most recent PRs this is still incorrect, to fix this will require special de-serializing logic for
Vec<u8>
kinda like we have done indeserialize_tuple
.A work around is to use
serde_with::Bytes
which is more efficient anyway.The text was updated successfully, but these errors were encountered: