Skip to content

Commit

Permalink
Review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
fasmat committed Sep 26, 2024
1 parent 4e7cb6b commit 3c53cc2
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 51 deletions.
94 changes: 47 additions & 47 deletions release/go/spacemesh/v2alpha1/malfeasance.pb.go

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

4 changes: 2 additions & 2 deletions release/openapi/swagger/src/api.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@
},
"smesherId": {
"type": "array",
"title": "list of smesher ids to fetch",
"title": "list of smesher ids to fetch (can be empty for all)",
"items": {
"type": "string",
"format": "byte"
Expand Down Expand Up @@ -1122,7 +1122,7 @@
"v2alpha1MalfeasanceList": {
"type": "object",
"properties": {
"malfeasances": {
"proofs": {
"type": "array",
"items": {
"type": "object",
Expand Down
4 changes: 2 additions & 2 deletions spacemesh/v2alpha1/malfeasance.proto
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ message MalfeasanceProof {
}

message MalfeasanceRequest {
repeated bytes smesher_id = 1; // list of smesher ids to fetch
repeated bytes smesher_id = 1; // list of smesher ids to fetch (can be empty for all)
uint64 offset = 2; // adjusts the starting point for data
uint64 limit = 3; // specifies max number of items to fetch
}

message MalfeasanceList {
repeated MalfeasanceProof malfeasances = 1;
repeated MalfeasanceProof proofs = 1;
}

service MalfeasanceService {
Expand Down

0 comments on commit 3c53cc2

Please sign in to comment.