Skip to content
Snippets Groups Projects

identity show: switch received and issued certs position

Merged Moul requested to merge identity_show_certs_order into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
+ 4
4
@@ -211,15 +211,15 @@ impl std::fmt::Display for IdtyView {
writeln!(f, "Status: {:?}", self.status)?;
writeln!(
f,
"Certifications: issued {}, received {}",
self.cert_issued_count, self.cert_received_count
"Certifications: received {}, issued {}",
self.cert_received_count, self.cert_issued_count
)?;
if let Some(smith) = &self.smith {
writeln!(f, "Smith status: {:?}", smith.status)?;
writeln!(
f,
"Smith certs: issued {}, received {}",
smith.cert_issued_count, smith.cert_received_count
"Smith certs: received {}, issued {}",
smith.cert_received_count, smith.cert_issued_count
)?;
}
let a = self.linked_account.len();
Loading