chore(pubkey): remove dead code (#18162)

(cherry picked from commit 755b7c7aee)

Co-authored-by: hrls <viktor.kharitonovich@gmail.com>
This commit is contained in:
mergify[bot]
2021-06-23 17:07:21 +00:00
committed by GitHub
parent bc08351a0a
commit a8071f1039

View File

@@ -76,13 +76,11 @@ pub enum ParsePubkeyError {
WrongSize,
#[error("Invalid Base58 string")]
Invalid,
#[error("Infallible")]
Infallible,
}
impl From<Infallible> for ParsePubkeyError {
fn from(_: Infallible) -> Self {
Self::Infallible
unreachable!("Infallible unihnabited");
}
}