From 3388c4ce2477fb063f69d14ae22321db76656d60 Mon Sep 17 00:00:00 2001 From: Dakota Brink Date: Thu, 3 Oct 2024 12:57:01 -0400 Subject: [PATCH] add error message to validation response --- proto/identity/api/v1/identity.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/identity/api/v1/identity.proto b/proto/identity/api/v1/identity.proto index ae933a2..2b584e0 100644 --- a/proto/identity/api/v1/identity.proto +++ b/proto/identity/api/v1/identity.proto @@ -67,6 +67,7 @@ message UnverifiedSmartContractWalletSignature { message VerifySmartContractWalletSignaturesResponse { message ValidationResponse { bool is_valid = 1; + optional string error = 2; } repeated ValidationResponse responses = 1;