[#1328] services/tree: Fix proto field numbers

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
Evgenii Stratonikov 2022-05-05 11:20:23 +03:00 committed by fyrchik
parent 36e24f7f78
commit 94b9e13431
4 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -13,11 +13,11 @@ message KeyValue {
// LogMove represents log-entry for a single move operation. // LogMove represents log-entry for a single move operation.
message LogMove { message LogMove {
// ID of the parent node. // ID of the parent node.
uint64 parent_id = 2 [json_name = "parentID"]; uint64 parent_id = 1 [json_name = "parentID"];
// Node meta information, including operation timestamp. // Node meta information, including operation timestamp.
bytes meta = 3 [json_name = "meta"]; bytes meta = 2 [json_name = "meta"];
// ID of the node to move. // ID of the node to move.
uint64 child_id = 4 [json_name = "childID"]; uint64 child_id = 3 [json_name = "childID"];
} }
// Signature of a message. // Signature of a message.