Remove outdated allow(unused)

This commit is contained in:
Valentine Wallace 2022-10-21 15:08:04 -04:00
parent a257906743
commit 20eecd5a76
No known key found for this signature in database
GPG key ID: FD3E106A2CE099B4

View file

@ -228,7 +228,6 @@ impl<'a, T: Writeable> Writeable for ChaChaPolyWriteAdapter<'a, T> {
/// Enables the use of the serialization macros for objects that need to be simultaneously decrypted and
/// deserialized. This allows us to avoid an intermediate Vec allocation.
pub(crate) struct ChaChaPolyReadAdapter<R: Readable> {
#[allow(unused)] // This will be used soon for onion messages
pub readable: R,
}