rust: upgrade model with new checkmessage requirements

Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
This commit is contained in:
Vincenzo Palazzo
2022-07-18 10:00:55 +00:00
committed by Christian Decker
parent ba4e870a1c
commit e70729b04b
3 changed files with 4 additions and 4 deletions

View File

@@ -299,7 +299,7 @@ impl From<&responses::CheckmessageResponse> for pb::CheckmessageResponse {
fn from(c: &responses::CheckmessageResponse) -> Self {
Self {
verified: c.verified.clone(), // Rule #2 for type boolean
pubkey: c.pubkey.as_ref().map(|v| v.to_vec()), // Rule #2 for type pubkey?
pubkey: c.pubkey.to_vec(), // Rule #2 for type pubkey
}
}
}