aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/contract_wrappers/contract_wrapper.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-11-23 23:41:05 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-11-24 05:15:00 +0800
commit34beee1edcd59b0f78c3dcce51cf847291ae06b4 (patch)
tree4befed4f518ec6d1d285b52e429db8c44a22ad46 /packages/0x.js/src/contract_wrappers/contract_wrapper.ts
parent7bc6a7b23f655a62a71f5d28e3aadcd245f856b8 (diff)
downloaddexon-sol-tools-34beee1edcd59b0f78c3dcce51cf847291ae06b4.tar
dexon-sol-tools-34beee1edcd59b0f78c3dcce51cf847291ae06b4.tar.gz
dexon-sol-tools-34beee1edcd59b0f78c3dcce51cf847291ae06b4.tar.bz2
dexon-sol-tools-34beee1edcd59b0f78c3dcce51cf847291ae06b4.tar.lz
dexon-sol-tools-34beee1edcd59b0f78c3dcce51cf847291ae06b4.tar.xz
dexon-sol-tools-34beee1edcd59b0f78c3dcce51cf847291ae06b4.tar.zst
dexon-sol-tools-34beee1edcd59b0f78c3dcce51cf847291ae06b4.zip
Refactor getContractAddress to contractWrapper
Diffstat (limited to 'packages/0x.js/src/contract_wrappers/contract_wrapper.ts')
-rw-r--r--packages/0x.js/src/contract_wrappers/contract_wrapper.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/src/contract_wrappers/contract_wrapper.ts b/packages/0x.js/src/contract_wrappers/contract_wrapper.ts
index 2b99cfe4c..522b40d52 100644
--- a/packages/0x.js/src/contract_wrappers/contract_wrapper.ts
+++ b/packages/0x.js/src/contract_wrappers/contract_wrapper.ts
@@ -141,7 +141,7 @@ export class ContractWrapper {
// We need to coerce to Block type cause Web3.Block includes types for mempool blocks
if (!_.isUndefined(this._blockAndLogStreamer)) {
// If we clear the interval while fetching the block - this._blockAndLogStreamer will be undefined
- await this._blockAndLogStreamer.reconcileNewBlock(latestBlock as any as Block);
+ this._blockAndLogStreamer.reconcileNewBlock(latestBlock as any as Block);
}
} catch (err) {
const filterTokens = _.keys(this._filterCallbacks);