diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-08-03 19:34:40 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-08-03 19:34:40 +0800 |
commit | ab398751e1cd899fb356db2908e6442b92de03da (patch) | |
tree | ccc4947ca9ff69e6e15ea84c71dcf0db54531cdf /packages | |
parent | 74d5f2f0b96f1789e75312a9c837336d6484475a (diff) | |
download | dexon-sol-tools-ab398751e1cd899fb356db2908e6442b92de03da.tar dexon-sol-tools-ab398751e1cd899fb356db2908e6442b92de03da.tar.gz dexon-sol-tools-ab398751e1cd899fb356db2908e6442b92de03da.tar.bz2 dexon-sol-tools-ab398751e1cd899fb356db2908e6442b92de03da.tar.lz dexon-sol-tools-ab398751e1cd899fb356db2908e6442b92de03da.tar.xz dexon-sol-tools-ab398751e1cd899fb356db2908e6442b92de03da.tar.zst dexon-sol-tools-ab398751e1cd899fb356db2908e6442b92de03da.zip |
Alow additional properties in txData json-schema
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, }; |