From 3024c00b8e1c93e70902793385b92bc0a8d1f26a Mon Sep 17 00:00:00 2001 From: Noor Date: Sat, 22 Mar 2025 03:15:07 +0530 Subject: [PATCH] Update ListAppContractsReq to include as_operator field and uuid --- proto/sgx/app.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/sgx/app.proto b/proto/sgx/app.proto index 8d80138..68a6240 100644 --- a/proto/sgx/app.proto +++ b/proto/sgx/app.proto @@ -62,8 +62,8 @@ message DelAppReq { message ListAppContractsReq { string admin_pubkey = 1; - // string uuid = 2; - // string node_pubkey = 3; + bool as_operator = 2; + string uuid = 3; }