Skip to content

Commit f38c278

Browse files
committed
Add endorser_blocks EB field to the shared schema files for events
1 parent b37714d commit f38c278

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

data/simulation/trace.shared.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ interface GeneratedEndorserBlock extends GeneratedBlockEvent {
7171
id: string;
7272
pipeline: number;
7373
input_blocks: BlockRef[];
74+
endorser_blocks: BlockRef[];
7475
}
7576

7677
interface GeneratedVote extends GeneratedBlockEvent {

data/simulation/trace.shared.schema.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@
108108
},
109109
"type": "array"
110110
},
111+
"endorser_blocks": {
112+
"items": {
113+
"$ref": "#/definitions/BlockRef"
114+
},
115+
"type": "array"
116+
},
111117
"pipeline": {
112118
"type": "number"
113119
},
@@ -127,6 +133,7 @@
127133
"required": [
128134
"id",
129135
"input_blocks",
136+
"endorser_blocks",
130137
"pipeline",
131138
"producer",
132139
"size_bytes",

0 commit comments

Comments
 (0)