aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-11-13 09:26:21 +0800
committerGitHub <noreply@github.com>2017-11-13 09:26:21 +0800
commit5aef16c2aacd279a8e688b4e735526bff7e4970f (patch)
treea85a712d3a478199a09ac6aebac6e43d2e3f3c3a /src/types.ts
parent6becf22a2f752ef7c34ce1b423efd51773cc5fde (diff)
parente512e38efbbec030add83ce2bc50f0d17862bdd6 (diff)
downloaddexon-sol-tools-5aef16c2aacd279a8e688b4e735526bff7e4970f.tar
dexon-sol-tools-5aef16c2aacd279a8e688b4e735526bff7e4970f.tar.gz
dexon-sol-tools-5aef16c2aacd279a8e688b4e735526bff7e4970f.tar.bz2
dexon-sol-tools-5aef16c2aacd279a8e688b4e735526bff7e4970f.tar.lz
dexon-sol-tools-5aef16c2aacd279a8e688b4e735526bff7e4970f.tar.xz
dexon-sol-tools-5aef16c2aacd279a8e688b4e735526bff7e4970f.tar.zst
dexon-sol-tools-5aef16c2aacd279a8e688b4e735526bff7e4970f.zip
Merge pull request #211 from 0xProject/feature/orderWatcherLocalStateStore
Order watcher local state store
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/types.ts b/src/types.ts
index a366fc31e..fcfbdc92b 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -397,12 +397,10 @@ export interface JSONRPCPayload {
}
/*
- * pollingIntervalMs: How often to poll the Ethereum node for new events.
- * numConfirmations: How many confirmed blocks deep you wish to listen for events at.
+ * eventPollingIntervalMs: How often to poll the Ethereum node for new events
*/
export interface OrderStateWatcherConfig {
- pollingIntervalMs?: number;
- numConfirmations: number;
+ eventPollingIntervalMs?: number;
}
/*