We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b37714d commit f38c278Copy full SHA for f38c278
data/simulation/trace.shared.d.ts
@@ -71,6 +71,7 @@ interface GeneratedEndorserBlock extends GeneratedBlockEvent {
71
id: string;
72
pipeline: number;
73
input_blocks: BlockRef[];
74
+ endorser_blocks: BlockRef[];
75
}
76
77
interface GeneratedVote extends GeneratedBlockEvent {
data/simulation/trace.shared.schema.json
@@ -108,6 +108,12 @@
108
},
109
"type": "array"
110
111
+ "endorser_blocks": {
112
+ "items": {
113
+ "$ref": "#/definitions/BlockRef"
114
+ },
115
+ "type": "array"
116
117
"pipeline": {
118
"type": "number"
119
@@ -127,6 +133,7 @@
127
133
"required": [
128
134
"id",
129
135
"input_blocks",
136
+ "endorser_blocks",
130
137
"pipeline",
131
138
"producer",
132
139
"size_bytes",
0 commit comments