diff --git a/tendermint/src/amino_types/ed25519.rs b/tendermint/src/amino_types/ed25519.rs index 7c393ae90..7fc347b93 100644 --- a/tendermint/src/amino_types/ed25519.rs +++ b/tendermint/src/amino_types/ed25519.rs @@ -30,6 +30,8 @@ impl From for PublicKey { } } +// TODO(xla): Either complete implementation or convert to TryFrom. +#[allow(clippy::fallible_impl_from)] impl From for PubKeyResponse { fn from(public_key: PublicKey) -> Self { match public_key { diff --git a/tendermint/src/amino_types/time.rs b/tendermint/src/amino_types/time.rs index edbae7f1d..e15cadc64 100644 --- a/tendermint/src/amino_types/time.rs +++ b/tendermint/src/amino_types/time.rs @@ -24,6 +24,8 @@ impl ParseTimestamp for Msg { } } +// TODO(xla): Convert to TryFrom. +#[allow(clippy::fallible_impl_from)] impl From