diff --git a/protocol/src/protocol/mod.rs b/protocol/src/protocol/mod.rs index fd86e6d..c831552 100644 --- a/protocol/src/protocol/mod.rs +++ b/protocol/src/protocol/mod.rs @@ -234,7 +234,7 @@ impl Serializable for () { fn read_from(_: &mut R) -> Result<(), Error> { Result::Ok(()) } - fn write_to(&self, buf: &mut W) -> Result<(), Error> { + fn write_to(&self, _: &mut W) -> Result<(), Error> { Result::Ok(()) } }