diff options
author | Jacob Evans <jacob@dekz.net> | 2018-07-19 15:51:03 +0800 |
---|---|---|
committer | Jacob Evans <jacob@dekz.net> | 2018-07-19 15:51:03 +0800 |
commit | 6529e060575c22612ded98545d1915686c54161d (patch) | |
tree | e09510a4a4e6de5e7ecd863e3cb5ed042d118753 /packages/json-schemas | |
parent | 3a18c249f5c780240f3dac7eb318118740056367 (diff) | |
download | dexon-sol-tools-6529e060575c22612ded98545d1915686c54161d.tar dexon-sol-tools-6529e060575c22612ded98545d1915686c54161d.tar.gz dexon-sol-tools-6529e060575c22612ded98545d1915686c54161d.tar.bz2 dexon-sol-tools-6529e060575c22612ded98545d1915686c54161d.tar.lz dexon-sol-tools-6529e060575c22612ded98545d1915686c54161d.tar.xz dexon-sol-tools-6529e060575c22612ded98545d1915686c54161d.tar.zst dexon-sol-tools-6529e060575c22612ded98545d1915686c54161d.zip |
Rename call data schema id to CallData.
Check for TypedArray when hashing data in order-utils crypto
Diffstat (limited to 'packages/json-schemas')
-rw-r--r-- | packages/json-schemas/schemas/call_data_schema.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/json-schemas/schemas/call_data_schema.ts b/packages/json-schemas/schemas/call_data_schema.ts index e8fcc7512..b9d00ad2a 100644 --- a/packages/json-schemas/schemas/call_data_schema.ts +++ b/packages/json-schemas/schemas/call_data_schema.ts @@ -1,5 +1,5 @@ export const callDataSchema = { - id: '/TxData', + id: '/CallData', properties: { from: { $ref: '/Address' }, to: { $ref: '/Address' }, |