Skip to content

Commit

Permalink
minor, oapi attempt to design exec trace incremental config
Browse files Browse the repository at this point in the history
  • Loading branch information
ahangsu committed May 6, 2023
1 parent b64059f commit 084a701
Show file tree
Hide file tree
Showing 14 changed files with 917 additions and 849 deletions.
9 changes: 9 additions & 0 deletions daemon/algod/api/algod.oas2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3297,6 +3297,15 @@
"extra-opcode-budget": {
"description": "Applies extra opcode budget during simulation for each transaction group.",
"type": "integer"
},
"exec-trace": {
"enum": [
"pc",
"stack",
"scratch-slot"
],
"type": "string",
"description": "Enumerations of exec trace during simulation for each transaction group, the latter options encapsulates the former options."
}
}
},
Expand Down
9 changes: 9 additions & 0 deletions daemon/algod/api/algod.oas3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1868,6 +1868,15 @@
"description": "Lifts limits on log opcode usage during simulation.",
"type": "boolean"
},
"exec-trace": {
"description": "Enumerations of exec trace during simulation for each transaction group, the latter options encapsulates the former options.",
"enum": [
"pc",
"stack",
"scratch-slot"
],
"type": "string"
},
"extra-opcode-budget": {
"description": "Applies extra opcode budget during simulation for each transaction group.",
"type": "integer"
Expand Down
351 changes: 176 additions & 175 deletions daemon/algod/api/server/v2/generated/data/routes.go

Large diffs are not rendered by default.

59 changes: 30 additions & 29 deletions daemon/algod/api/server/v2/generated/experimental/routes.go

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

13 changes: 13 additions & 0 deletions daemon/algod/api/server/v2/generated/model/types.go

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

0 comments on commit 084a701

Please sign in to comment.