validator: add operation success endpoint
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-08-14 16:55:37 -07:00
parent e7913b7950
commit 9a7a123284

View File

@@ -113,9 +113,15 @@ message NullResponse {}
// Operations
service ValidatorOperationService {
rpc Success(OperationSuccessRequest) returns (NullResponse);
rpc Fail(OperationFailRequest) returns (NullResponse);
}
message OperationSuccessRequest {
uint32 OperationID = 1;
string Path = 2;
}
message OperationFailRequest {
uint32 OperationID = 1;
string StatusMessage = 2;