use crate::{Error, PublicKey};
use std::convert::{TryFrom, TryInto};
use tendermint_proto::privval::{PubKeyResponse as RawPubKeyResponse, RemoteSignerError};
use tendermint_proto::Protobuf;
#[derive(Clone, PartialEq, Debug)]
pub struct PubKeyResponse {
pub pub_key: Option<PublicKey>,
pub error: Option<RemoteSignerError>,
}
impl Protobuf<RawPubKeyResponse> for PubKeyResponse {}
impl TryFrom<RawPubKeyResponse> for PubKeyResponse {
type Error = Error;
fn try_from(value: RawPubKeyResponse) -> Result<Self, Self::Error> {
Ok(PubKeyResponse {
pub_key: value.pub_key.map(TryInto::try_into).transpose()?,
error: value.error,
})
}
}
impl From<PubKeyResponse> for RawPubKeyResponse {
fn from(value: PubKeyResponse) -> Self {
RawPubKeyResponse {
pub_key: value.pub_key.map(Into::into),
error: value.error,
}
}
}