diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-02-07 22:09:06 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-02-07 22:09:06 +0800 |
commit | 223df8006a30a95db544a2af080224a4d9d2d474 (patch) | |
tree | 6b995cab8326ab91e4b347fad8caeaf96357665c /packages/website/ts/schemas/order_taker_schema.ts | |
parent | 1c9428cbba873fe8d5bd18b2cb10522cbdb17a3f (diff) | |
download | dexon-0x-contracts-223df8006a30a95db544a2af080224a4d9d2d474.tar.gz dexon-0x-contracts-223df8006a30a95db544a2af080224a4d9d2d474.tar.zst dexon-0x-contracts-223df8006a30a95db544a2af080224a4d9d2d474.zip |
Move .taker.amount to .takerTokenAmount and .maker.amount to .makerTokenAmount
Diffstat (limited to 'packages/website/ts/schemas/order_taker_schema.ts')
-rw-r--r-- | packages/website/ts/schemas/order_taker_schema.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/website/ts/schemas/order_taker_schema.ts b/packages/website/ts/schemas/order_taker_schema.ts index c8d56a417..bce71f74b 100644 --- a/packages/website/ts/schemas/order_taker_schema.ts +++ b/packages/website/ts/schemas/order_taker_schema.ts @@ -3,8 +3,7 @@ export const orderTakerSchema = { properties: { address: { type: 'string' }, token: { $ref: '/Token' }, - amount: { type: 'string' }, }, - required: ['address', 'token', 'amount'], + required: ['address', 'token'], type: 'object', }; |