Skip to content
Snippets Groups Projects
Commit 8c4a2cf8 authored by Moul's avatar Moul Committed by poka
Browse files

identity show: switch received and issued certs position (!30)

* identity show: switch received and issued certs position

Make more sense to me, you receive from the left and issue to the right

That’s how they are presented in Cesium and Silkaj
parent e28cb96e
No related branches found
No related tags found
1 merge request!30identity show: switch received and issued certs position
...@@ -211,15 +211,15 @@ impl std::fmt::Display for IdtyView { ...@@ -211,15 +211,15 @@ impl std::fmt::Display for IdtyView {
writeln!(f, "Status: {:?}", self.status)?; writeln!(f, "Status: {:?}", self.status)?;
writeln!( writeln!(
f, f,
"Certifications: issued {}, received {}", "Certifications: received {}, issued {}",
self.cert_issued_count, self.cert_received_count self.cert_received_count, self.cert_issued_count
)?; )?;
if let Some(smith) = &self.smith { if let Some(smith) = &self.smith {
writeln!(f, "Smith status: {:?}", smith.status)?; writeln!(f, "Smith status: {:?}", smith.status)?;
writeln!( writeln!(
f, f,
"Smith certs: issued {}, received {}", "Smith certs: received {}, issued {}",
smith.cert_issued_count, smith.cert_received_count smith.cert_received_count, smith.cert_issued_count
)?; )?;
} }
let a = self.linked_account.len(); let a = self.linked_account.len();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment