diff options
Diffstat (limited to 'JSONSchema/st-filler-schema.json')
-rw-r--r-- | JSONSchema/st-filler-schema.json | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/JSONSchema/st-filler-schema.json b/JSONSchema/st-filler-schema.json index a9e2831e2..d110e0493 100644 --- a/JSONSchema/st-filler-schema.json +++ b/JSONSchema/st-filler-schema.json @@ -20,12 +20,17 @@ { "$ref": "#/definitions/HexQuantity" } ] }, - "HexDataOrEmpty": { + "TxData": { "oneOf": [ { "$ref": "#/definitions/HexData" }, - { "$ref": "#/definitions/EmptyString" } + { "$ref": "#/definitions/EmptyString" }, + { "$ref": "#/definitions/LLLCode" } ] }, + "LLLCode" : { + "type" : "string", + "pattern" : "^{.*}$" + }, "HexNoPrefix" : { "pattern": "^([0-9a-fA-F][0-9a-fA-F])+$", "type": "string" @@ -165,7 +170,7 @@ }, "properties": { "data": { - "items": { "$ref": "#/definitions/HexDataOrEmpty" }, + "items": { "$ref": "#/definitions/TxData" }, "type": "array" }, "gasLimit": { @@ -199,7 +204,7 @@ }, "properties": { "data": { - "items": { "$ref": "#/definitions/HexMaybePrefixOrEmpty" }, + "items": { "$ref": "#/definitions/TxData" }, "type": "array" }, "gasLimit": { |