10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ebd4f1 commit 3be71ecCopy full SHA for 3be71ec
JSONSchema/bc-filler-schema.json
@@ -218,6 +218,9 @@
218
],
219
"type": "object"
220
},
221
+ "sealEngine": {
222
+ "$ref": "#/definitions/SealEngineType"
223
+ },
224
"Transaction": {
225
"additionalProperties": true,
226
"not": {
@@ -227,7 +230,7 @@
227
230
228
231
"properties": {
229
232
"data": {
- "$ref": "#/definitions/HexDataOrEmpty"
233
+ "$ref": "#/definitions/TxData"
234
235
"gasLimit": {
236
"$ref": "#/definitions/IntegerOrEmptyOrConfusedHex"
@@ -258,6 +261,19 @@
258
261
259
262
260
263
264
+ "TxData": {
265
+ "anyOf": [
266
+ {
267
+ "$ref": "#/definitions/HexData"
268
269
270
+ "$ref": "#/definitions/EmptyString"
271
272
273
+ "$ref": "#/definitions/LLLCode"
274
+ }
275
+ ]
276
277
"TxSigR": {
278
"oneOf": [
279
{
@@ -318,7 +334,10 @@
318
334
"description": "prestate account address with 0x prefix"
319
335
}
320
336
321
- }
337
338
339
340
322
341
323
342
"required": [
324
343
"pre",
JSONSchema/bc-schema.json
@@ -198,6 +198,9 @@
198
199
200
201
202
203
204
205
206
@@ -301,7 +304,10 @@
301
304
302
305
303
306
307
308
309
310
311
312
313
"postState",
JSONSchema/definitions.json
@@ -279,6 +279,18 @@
280
]
281
282
+ "SealEngineType": {
283
284
285
+ "pattern": "NoProof",
286
+ "type": "string"
287
288
289
+ "pattern": "Ethash",
290
291
292
293
294
"TransactionResults": {
295
"items": {
296
"additionalProperties": false,