Skip to content

Commit

Permalink
BlockLog -> AppCallLogs
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-p committed Jan 19, 2024
1 parent 4909d96 commit 8c3ae7e
Show file tree
Hide file tree
Showing 10 changed files with 1,400 additions and 1,400 deletions.
4 changes: 2 additions & 2 deletions daemon/algod/api/algod.oas2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4506,7 +4506,7 @@
}
}
},
"BlockLog": {
"AppCallLogs": {
"description": "An array of logs for a given application ID and outer transaction ID",
"type": "object",
"required": [
Expand Down Expand Up @@ -5200,7 +5200,7 @@
"logs": {
"type": "array",
"items": {
"$ref": "#/definitions/BlockLog"
"$ref": "#/definitions/AppCallLogs"
}
}
}
Expand Down
62 changes: 31 additions & 31 deletions daemon/algod/api/algod.oas3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
"properties": {
"logs": {
"items": {
"$ref": "#/components/schemas/BlockLog"
"$ref": "#/components/schemas/AppCallLogs"
},
"type": "array"
}
Expand Down Expand Up @@ -1224,6 +1224,34 @@
],
"type": "object"
},
"AppCallLogs": {
"description": "An array of logs for a given application ID and outer transaction ID",
"properties": {
"application-index": {
"description": "The application from which the logs were generated",
"type": "integer"
},
"logs": {
"description": "An array of logs",
"items": {
"format": "byte",
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string"
},
"type": "array"
},
"txid": {
"description": "The transaction ID of the outer app call that lead to these logs",
"type": "string"
}
},
"required": [
"application-index",
"logs",
"txid"
],
"type": "object"
},
"Application": {
"description": "Application index and its parameters",
"properties": {
Expand Down Expand Up @@ -1609,34 +1637,6 @@
],
"type": "object"
},
"BlockLog": {
"description": "An array of logs for a given application ID and outer transaction ID",
"properties": {
"application-index": {
"description": "The application from which the logs were generated",
"type": "integer"
},
"logs": {
"description": "An array of logs",
"items": {
"format": "byte",
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string"
},
"type": "array"
},
"txid": {
"description": "The transaction ID of the outer app call that lead to these logs",
"type": "string"
}
},
"required": [
"application-index",
"logs",
"txid"
],
"type": "object"
},
"Box": {
"description": "Box name and its content.",
"properties": {
Expand Down Expand Up @@ -4049,7 +4049,7 @@
"properties": {
"logs": {
"items": {
"$ref": "#/components/schemas/BlockLog"
"$ref": "#/components/schemas/AppCallLogs"
},
"type": "array"
}
Expand Down Expand Up @@ -4091,7 +4091,7 @@
}
}
},
"description": "None existing block "
"description": "Nonexistent block "
},
"500": {
"content": {
Expand Down
416 changes: 208 additions & 208 deletions daemon/algod/api/server/v2/generated/data/routes.go

Large diffs are not rendered by default.

418 changes: 209 additions & 209 deletions daemon/algod/api/server/v2/generated/experimental/routes.go

Large diffs are not rendered by default.

26 changes: 13 additions & 13 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.

Loading

0 comments on commit 8c3ae7e

Please sign in to comment.