Skip to content

Commit

Permalink
added missing tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
cristure committed Sep 18, 2024
1 parent f95a4e7 commit b9e28fb
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 54 deletions.
97 changes: 49 additions & 48 deletions data/stateChange/stateChange.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions data/stateChange/stateChange.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ message StateChanges {

message StateChange {
string Type = 1 [(gogoproto.jsontag) = "type"];
int32 Index = 2 [(gogoproto.jsontag) = "-"];
bytes TxHash = 3 [(gogoproto.jsontag) = "-"];
bytes MainTrieKey = 4 [(gogoproto.jsontag) = "-"];
bytes MainTrieVal = 5 [(gogoproto.jsontag) = "-"];
int32 Index = 2 [(gogoproto.jsontag) = "index"];
bytes TxHash = 3 [(gogoproto.jsontag) = "txHash"];
bytes MainTrieKey = 4 [(gogoproto.jsontag) = "mainTrieKey"];
bytes MainTrieVal = 5 [(gogoproto.jsontag) = "mainTrieVal"];
string Operation = 6 [(gogoproto.jsontag) = "operation"];
repeated DataTrieChange DataTrieChanges = 7 [(gogoproto.jsontag) = "dataTrieChanges,omitempty"];
}

message DataTrieChange {
string Type = 1 [(gogoproto.jsontag) = "type"];
bytes Key = 2 [(gogoproto.jsontag) = "type"];
bytes Val = 3 [(gogoproto.jsontag) = "type"];
bytes Key = 2 [(gogoproto.jsontag) = "key"];
bytes Val = 3 [(gogoproto.jsontag) = "val"];
}

message DataAnalysisStateChange {
Expand Down

0 comments on commit b9e28fb

Please sign in to comment.