From 7f431e7180ef77e6f66f434866bebc90608a9c82 Mon Sep 17 00:00:00 2001 From: Noor Date: Wed, 5 Feb 2025 12:02:06 +0530 Subject: [PATCH] minor fix fix typo in daemon message comment out uuid and node_pubkey fields in list contract --- proto/brain.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proto/brain.proto b/proto/brain.proto index a2f8da9..49cd1d4 100644 --- a/proto/brain.proto +++ b/proto/brain.proto @@ -53,9 +53,9 @@ message DelAppReq { } message ListAppContractsReq { - string uuid = 1; - string admin_pubkey = 2; - string node_pubkey = 3; + string admin_pubkey = 1; + // string uuid = 2; + // string node_pubkey = 3; } service BrainAppCli { @@ -95,7 +95,7 @@ message BrainMessageApp { message DaemonMessageApp { oneof Msg { string pubkey = 1; - NewAppRes new_app_resp = 2; + NewAppRes new_app_res = 2; AppNodeResources app_node_resources = 3; } }