From 9cd12b08615a55bcb26a104613a05354a6bac1d5 Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Fri, 26 Nov 2021 22:39:11 +0200 Subject: [PATCH] Fix up deprecation for ED25519_SIGNATURE_SIZE (#1032) 0.23.1 was released before #1023 or its backport to v0.23.x were merged. --- tendermint/src/signature.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tendermint/src/signature.rs b/tendermint/src/signature.rs index d4cfb8162..603745237 100644 --- a/tendermint/src/signature.rs +++ b/tendermint/src/signature.rs @@ -12,7 +12,7 @@ use tendermint_proto::Protobuf; use crate::error::Error; -#[deprecated(since = "0.23.1", note = "use Ed25519Signature::BYTE_SIZE instead")] +#[deprecated(since = "0.23.2", note = "use Ed25519Signature::BYTE_SIZE instead")] pub const ED25519_SIGNATURE_SIZE: usize = Ed25519Signature::BYTE_SIZE; /// The expected length of all currently supported signatures, in bytes.