minor fix

fix typo in daemon message
comment out uuid and node_pubkey fields in list contract
This commit is contained in:
Noor 2025-02-05 12:02:06 +05:30
parent 42443b8162
commit 7f431e7180
Signed by: noormohammedb
GPG Key ID: D83EFB8B3B967146

@ -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;
}
}