Skip to content

Commit 2290b7a

Browse files
committed
Update schema with new task type
1 parent 591ec75 commit 2290b7a

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

data/simulation/trace.haskell.schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"GenRB",
4949
"GenVote",
5050
"ValEB",
51+
"ValEH",
5152
"ValIB",
5253
"ValIH",
5354
"ValRB",

data/simulation/trace.rust.schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
"GenRB",
7575
"GenVote",
7676
"ValEB",
77+
"ValEH",
7778
"ValIB",
7879
"ValIH",
7980
"ValRB",

data/simulation/trace.shared.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ interface NoBlockEvent {
3131
slot: number;
3232
}
3333

34-
type CpuTaskType = "ValIB" | "ValEB" | "ValRB" | "ValIH" | "ValRH" | "ValVote" | "GenIB" | "GenEB" | "GenVote" | "GenRB" | "ValTX";
34+
type CpuTaskType = "ValIB" | "ValEB" | "ValRB" | "ValIH" | "ValEH" | "ValRH" | "ValVote" | "GenIB" | "GenEB" | "GenVote" | "GenRB" | "ValTX";
3535
type CpuEventType = "Cpu"
3636
interface CpuEvent {
3737
type: CpuEventType;

data/simulation/trace.shared.schema.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"GenRB",
4949
"GenVote",
5050
"ValEB",
51+
"ValEH",
5152
"ValIB",
5253
"ValIH",
5354
"ValRB",
@@ -99,16 +100,16 @@
99100
},
100101
"GeneratedEndorserBlock": {
101102
"properties": {
102-
"id": {
103-
"type": "string"
104-
},
105-
"input_blocks": {
103+
"endorser_blocks": {
106104
"items": {
107105
"$ref": "#/definitions/BlockRef"
108106
},
109107
"type": "array"
110108
},
111-
"endorser_blocks": {
109+
"id": {
110+
"type": "string"
111+
},
112+
"input_blocks": {
112113
"items": {
113114
"$ref": "#/definitions/BlockRef"
114115
},
@@ -131,9 +132,9 @@
131132
}
132133
},
133134
"required": [
135+
"endorser_blocks",
134136
"id",
135137
"input_blocks",
136-
"endorser_blocks",
137138
"pipeline",
138139
"producer",
139140
"size_bytes",

0 commit comments

Comments
 (0)