We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe3ddd6 commit 129c25eCopy full SHA for 129c25e
lightning/src/util/ser.rs
@@ -769,10 +769,6 @@ impl Writeable for ecdsa::Signature {
769
fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
770
self.serialize_compact().write(w)
771
}
772
- #[inline]
773
- fn serialized_length(&self) -> usize {
774
- COMPACT_SIGNATURE_SIZE
775
- }
776
777
778
impl Readable for ecdsa::Signature {
@@ -789,10 +785,6 @@ impl Writeable for schnorr::Signature {
789
785
790
786
self.as_ref().write(w)
791
787
792
793
794
- SCHNORR_SIGNATURE_SIZE
795
796
788
797
798
impl Readable for schnorr::Signature {
0 commit comments