diff options
author | Fabio Berger <me@fabioberger.com> | 2017-11-10 05:59:41 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-11-10 05:59:41 +0800 |
commit | 126a165f558326625d892c4a379c0ebd66088c9a (patch) | |
tree | ac7b872b3cd84e0fcb650845eae08bf40c841f50 /src/schemas | |
parent | 6f5a55b5fe4c6f0f56303b6ac5dcbd99129ee7bd (diff) | |
download | dexon-sol-tools-126a165f558326625d892c4a379c0ebd66088c9a.tar dexon-sol-tools-126a165f558326625d892c4a379c0ebd66088c9a.tar.gz dexon-sol-tools-126a165f558326625d892c4a379c0ebd66088c9a.tar.bz2 dexon-sol-tools-126a165f558326625d892c4a379c0ebd66088c9a.tar.lz dexon-sol-tools-126a165f558326625d892c4a379c0ebd66088c9a.tar.xz dexon-sol-tools-126a165f558326625d892c4a379c0ebd66088c9a.tar.zst dexon-sol-tools-126a165f558326625d892c4a379c0ebd66088c9a.zip |
Add nested config for orderWatcher
Diffstat (limited to 'src/schemas')
-rw-r--r-- | src/schemas/zero_ex_config_schema.ts | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/schemas/zero_ex_config_schema.ts b/src/schemas/zero_ex_config_schema.ts index 5be651a9a..5a2afeaa2 100644 --- a/src/schemas/zero_ex_config_schema.ts +++ b/src/schemas/zero_ex_config_schema.ts @@ -5,9 +5,14 @@ export const zeroExConfigSchema = { exchangeContractAddress: {$ref: '/Address'}, tokenRegistryContractAddress: {$ref: '/Address'}, etherTokenContractAddress: {$ref: '/Address'}, - mempoolPollingIntervalMs: { - type: 'number', - min: 0, + orderWatcherConfig: { + type: 'object', + properties: { + pollingIntervalMs: { + type: 'number', + minimum: 0, + }, + }, }, }, type: 'object', |