Skip to content

Commit

Permalink
format byte
Browse files Browse the repository at this point in the history
  • Loading branch information
ahangsu committed Aug 17, 2023
1 parent eb2952c commit 8e4aefb
Show file tree
Hide file tree
Showing 11 changed files with 1,295 additions and 1,292 deletions.
12 changes: 6 additions & 6 deletions daemon/algod/api/algod.oas2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4142,9 +4142,9 @@
}
},
"approval-program-hash": {
"description": "Hash digest of the approval program executed in transaction.",
"description": "SHA512_256 hash digest of the approval program executed in transaction.",
"type": "string",
"format": "bytes"
"format": "byte"
},
"clear-state-program-trace": {
"description": "Program trace that contains a trace of opcode effects in a clear state program.",
Expand All @@ -4154,9 +4154,9 @@
}
},
"clear-state-program-hash": {
"description": "Hash digest of the clear state program executed in transaction.",
"description": "SHA512_256 hash digest of the clear state program executed in transaction.",
"type": "string",
"format": "bytes"
"format": "byte"
},
"logic-sig-trace": {
"description": "Program trace that contains a trace of opcode effects in a logic sig.",
Expand All @@ -4166,9 +4166,9 @@
}
},
"logic-sig-hash": {
"description": "Hash digest of the logic sig executed in transaction.",
"description": "SHA512_256 hash digest of the logic sig executed in transaction.",
"type": "string",
"format": "bytes"
"format": "byte"
},
"inner-trace": {
"description": "An array of SimulationTransactionExecTrace representing the execution trace of any inner transactions executed.",
Expand Down
15 changes: 9 additions & 6 deletions daemon/algod/api/algod.oas3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2292,8 +2292,9 @@
"description": "The execution trace of calling an app or a logic sig, containing the inner app call trace in a recursive way.",
"properties": {
"approval-program-hash": {
"description": "Hash digest of the approval program executed in transaction.",
"format": "bytes",
"description": "SHA512_256 hash digest of the approval program executed in transaction.",
"format": "byte",
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string"
},
"approval-program-trace": {
Expand All @@ -2304,8 +2305,9 @@
"type": "array"
},
"clear-state-program-hash": {
"description": "Hash digest of the clear state program executed in transaction.",
"format": "bytes",
"description": "SHA512_256 hash digest of the clear state program executed in transaction.",
"format": "byte",
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string"
},
"clear-state-program-trace": {
Expand All @@ -2323,8 +2325,9 @@
"type": "array"
},
"logic-sig-hash": {
"description": "Hash digest of the logic sig executed in transaction.",
"format": "bytes",
"description": "SHA512_256 hash digest of the logic sig executed in transaction.",
"format": "byte",
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string"
},
"logic-sig-trace": {
Expand Down
390 changes: 195 additions & 195 deletions daemon/algod/api/server/v2/generated/data/routes.go

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

12 changes: 6 additions & 6 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 8e4aefb

Please sign in to comment.