aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-08-03 19:34:40 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-08-03 19:34:40 +0800
commitab398751e1cd899fb356db2908e6442b92de03da (patch)
treeccc4947ca9ff69e6e15ea84c71dcf0db54531cdf /packages/json-schemas
parent74d5f2f0b96f1789e75312a9c837336d6484475a (diff)
downloaddexon-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/json-schemas')
-rw-r--r--packages/json-schemas/CHANGELOG.json8
-rw-r--r--packages/json-schemas/schemas/tx_data_schema.ts1
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,
};