diff --git a/core/src/ser.rs b/core/src/ser.rs index 32b2978462..3c2f601653 100644 --- a/core/src/ser.rs +++ b/core/src/ser.rs @@ -818,12 +818,6 @@ impl Readable for (A, B, C, } } -impl Writeable for [u8; 4] { - fn write(&self, writer: &mut W) -> Result<(), Error> { - writer.write_bytes(self) - } -} - /// Trait for types that can be added to a PMMR. pub trait PMMRable: Writeable + Clone + Debug + DefaultHashable { /// The type of element actually stored in the MMR data file.