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
It would be nice if this library would play well with parity-scale-codec's Decode trait. this trait takes in an &mut Input (something implementing the Input trait), but because scale-decode only accepts &mut &[u8], we can't easily use it as part of that decode impl.
Let's consider supporting &mut Input instead to allow these crates to play nicely together.
The text was updated successfully, but these errors were encountered:
It would be nice if this library would play well with
parity-scale-codec
'sDecode
trait. this trait takes in an&mut Input
(something implementing theInput
trait), but becausescale-decode
only accepts&mut &[u8]
, we can't easily use it as part of that decode impl.Let's consider supporting
&mut Input
instead to allow these crates to play nicely together.The text was updated successfully, but these errors were encountered: