diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-10-30 21:01:20 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-10-31 00:49:16 +0800 |
commit | 2a25ece3636015e8429fe4556b62fc84545dc7c7 (patch) | |
tree | 1a1bc7e569e78ad3463a7a2af160c76078974016 /src/schemas | |
parent | 1c90c3af4211b56994a11dd1f583513c961e0f6d (diff) | |
download | dexon-sol-tools-2a25ece3636015e8429fe4556b62fc84545dc7c7.tar dexon-sol-tools-2a25ece3636015e8429fe4556b62fc84545dc7c7.tar.gz dexon-sol-tools-2a25ece3636015e8429fe4556b62fc84545dc7c7.tar.bz2 dexon-sol-tools-2a25ece3636015e8429fe4556b62fc84545dc7c7.tar.lz dexon-sol-tools-2a25ece3636015e8429fe4556b62fc84545dc7c7.tar.xz dexon-sol-tools-2a25ece3636015e8429fe4556b62fc84545dc7c7.tar.zst dexon-sol-tools-2a25ece3636015e8429fe4556b62fc84545dc7c7.zip |
Add empty implementation of order state watcher
Diffstat (limited to 'src/schemas')
-rw-r--r-- | src/schemas/order_watcher_config_schema.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/schemas/order_watcher_config_schema.ts b/src/schemas/order_watcher_config_schema.ts new file mode 100644 index 000000000..a88d2ecfd --- /dev/null +++ b/src/schemas/order_watcher_config_schema.ts @@ -0,0 +1,7 @@ +export const orderWatcherConfigSchema = { + id: '/OrderWatcherConfig', + properties: { + mempoolPollingIntervalMs: {$ref: '/Number'}, + }, + type: 'object', +}; |