Skip to content

Commit 4c4dc54

Browse files
committed
Align ticks/crosses in CLI output
1 parent 4367fa5 commit 4c4dc54

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

trustchain-cli/src/bin/main.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
267267
handle_credential_error(&cred_err);
268268
}
269269
Ok(_) => {
270-
println!("Proof... ✅");
270+
println!("Proof.... ✅");
271271
println!("Issuer... ✅");
272272
}
273273
}
@@ -364,7 +364,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
364364
println!("Digest... ❌ (mismatched dataset hash digests)");
365365
}
366366
Ok(_) => {
367-
println!("Proof... ✅");
367+
println!("Proof.... ✅");
368368
println!("Issuer... ✅");
369369
println!("Digest... ✅");
370370
}
@@ -420,15 +420,15 @@ fn handle_credential_error(err: &CredentialError) {
420420
println!("Proof... ❌ (missing verification method)");
421421
}
422422
_err @ CredentialError::NoIssuerPresent => {
423-
println!("Proof... ✅");
423+
println!("Proof.... ✅");
424424
println!("Issuer... ❌ (missing issuer)");
425425
}
426426
_err @ CredentialError::VerifierError(_) => {
427-
println!("Proof... ✅");
427+
println!("Proof.... ✅");
428428
println!("Issuer... ❌ (with verifier error)");
429429
}
430430
_err @ CredentialError::FailedToDecodeJWT => {
431-
println!("Proof... ❌");
431+
println!("Proof.... ❌");
432432
println!("Issuer... ❌");
433433
}
434434
}

0 commit comments

Comments
 (0)