Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

algod:Stateproof server api #3888

Merged
merged 19 commits into from
May 2, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
restraining the minimum round given to stateproof api
  • Loading branch information
algonathan committed May 1, 2022
commit affe891c0b42daaaea200e88d36fab14fc50f082
3 changes: 2 additions & 1 deletion daemon/algod/api/algod.oas2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,8 @@
"type": "integer",
"name": "round",
"in": "path",
"required": true
"required": true,
"minimum": 0
}
],
"get": {
Expand Down
1 change: 1 addition & 0 deletions daemon/algod/api/algod.oas3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4238,6 +4238,7 @@
"name": "round",
"required": true,
"schema": {
"minimum": 0,
"type": "integer"
}
}
Expand Down
6 changes: 3 additions & 3 deletions daemon/algod/api/server/v2/generated/routes.go

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