4f43965ade
One encodes to a writer and decodes from a reader, most of the time in the consensus `Encodable`/`Decodable` traits we use generic `R`/`W` and variable `r`/`w` but there are other places that use other characters. While touching these lines note also that there are a bunch of unneeded `mut`s, I'm not sure why since usually between the compiler and the linter `mut` is handled correctly. Make implementations of `Encodable` and `Decodable` uniform by: - Use R/W and r/w for trait and variable name - Remove unneeded mut |
||
---|---|---|
.. | ||
encode.rs | ||
mod.rs | ||
params.rs | ||
serde.rs | ||
validation.rs |