aboutsummaryrefslogtreecommitdiffstats
path: root/JSONSchema/bc-filler-schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'JSONSchema/bc-filler-schema.json')
-rw-r--r--JSONSchema/bc-filler-schema.json23
1 files changed, 21 insertions, 2 deletions
diff --git a/JSONSchema/bc-filler-schema.json b/JSONSchema/bc-filler-schema.json
index 2f9ecfbb5..a5306c5c3 100644
--- a/JSONSchema/bc-filler-schema.json
+++ b/JSONSchema/bc-filler-schema.json
@@ -218,6 +218,9 @@
],
"type": "object"
},
+ "sealEngine": {
+ "$ref": "#/definitions/SealEngineType"
+ },
"Transaction": {
"additionalProperties": true,
"not": {
@@ -227,7 +230,7 @@
},
"properties": {
"data": {
- "$ref": "#/definitions/HexDataOrEmpty"
+ "$ref": "#/definitions/TxData"
},
"gasLimit": {
"$ref": "#/definitions/IntegerOrEmptyOrConfusedHex"
@@ -258,6 +261,19 @@
],
"type": "object"
},
+ "TxData": {
+ "anyOf": [
+ {
+ "$ref": "#/definitions/HexData"
+ },
+ {
+ "$ref": "#/definitions/EmptyString"
+ },
+ {
+ "$ref": "#/definitions/LLLCode"
+ }
+ ]
+ },
"TxSigR": {
"oneOf": [
{
@@ -318,7 +334,10 @@
"description": "prestate account address with 0x prefix"
}
}
- }
+ },
+ "sealEngine": {
+ "$ref": "#/definitions/SealEngineType"
+ }
},
"required": [
"pre",