diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/json-schemas/CHANGELOG.json | 8 | ||||
-rw-r--r-- | packages/json-schemas/schemas/tx_data_schema.ts | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/packages/json-schemas/CHANGELOG.json b/packages/json-schemas/CHANGELOG.json index 31da6a7f7..ab1bff76c 100644 --- a/packages/json-schemas/CHANGELOG.json +++ b/packages/json-schemas/CHANGELOG.json @@ -1,5 +1,13 @@ [ { + "version": "1.0.1-rc.4", + "changes": [ + { + "note": "Allow for additional properties in txData schema" + } + ] + }, + { "version": "1.0.1-rc.3", "changes": [ { diff --git a/packages/json-schemas/schemas/tx_data_schema.ts b/packages/json-schemas/schemas/tx_data_schema.ts index 4274c553f..307ae613c 100644 --- a/packages/json-schemas/schemas/tx_data_schema.ts +++ b/packages/json-schemas/schemas/tx_data_schema.ts @@ -29,5 +29,4 @@ export const txDataSchema = { }, required: ['from'], type: 'object', - additionalProperties: false, }; |