From ffd11f2fdb2d2bfa38f27018e6e4888cdada9c21 Mon Sep 17 00:00:00 2001 From: Philip Tricca Date: Sat, 9 Dec 2023 15:08:08 -0800 Subject: [PATCH] verifier: Fix string name for 'SpRot' interface. This is the interface name passed to `humility hiffy --call`. --- verifier/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verifier/src/main.rs b/verifier/src/main.rs index d467709..f0babae 100644 --- a/verifier/src/main.rs +++ b/verifier/src/main.rs @@ -133,7 +133,7 @@ impl fmt::Display for Interface { fn fmt(&self, f: &mut Formatter) -> fmt::Result { match self { Interface::Rot => write!(f, "Attest"), - Interface::Sprot => write!(f, "Sprot"), + Interface::Sprot => write!(f, "SpRot"), } } }