Fix config schema

This commit is contained in:
Leonid Logvinov
2017-10-30 15:08:58 +02:00
parent 1980b3fae4
commit ff5d18d327

View File

@@ -1,7 +1,10 @@
export const orderWatcherConfigSchema = {
id: '/OrderWatcherConfig',
properties: {
mempoolPollingIntervalMs: {$ref: '/Number'},
mempoolPollingIntervalMs: {
type: 'number',
min: 0,
},
},
type: 'object',
};