diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-10-30 17:34:26 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-10-31 00:49:16 +0800 |
commit | 7bf6e6188aad6f5ae3de4fe04074abed33c73c53 (patch) | |
tree | b46532a85b2d0d7deb94467e71c9e5ca8864adfe /src/0x.ts | |
parent | 26394813f4824590bac00da05ab1026aa360c77f (diff) | |
download | dexon-sol-tools-7bf6e6188aad6f5ae3de4fe04074abed33c73c53.tar dexon-sol-tools-7bf6e6188aad6f5ae3de4fe04074abed33c73c53.tar.gz dexon-sol-tools-7bf6e6188aad6f5ae3de4fe04074abed33c73c53.tar.bz2 dexon-sol-tools-7bf6e6188aad6f5ae3de4fe04074abed33c73c53.tar.lz dexon-sol-tools-7bf6e6188aad6f5ae3de4fe04074abed33c73c53.tar.xz dexon-sol-tools-7bf6e6188aad6f5ae3de4fe04074abed33c73c53.tar.zst dexon-sol-tools-7bf6e6188aad6f5ae3de4fe04074abed33c73c53.zip |
Move provider altering logic to Web3Wrapper
Diffstat (limited to 'src/0x.ts')
-rw-r--r-- | src/0x.ts | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -177,12 +177,6 @@ export class ZeroEx { if (!_.isUndefined(config)) { assert.doesConformToSchema('config', config, zeroExConfigSchema); } - if (_.isUndefined((provider as any).sendAsync)) { - // Web3@1.0 provider doesn't support synchronous http requests, - // so it only has an async `send` method, instead of a `send` and `sendAsync` in web3@0.x.x` - // We re-assign the send method so that Web3@1.0 providers work with 0x.js - (provider as any).sendAsync = (provider as any).send; - } const artifactJSONs = _.values(artifacts); const abiArrays = _.map(artifactJSONs, artifact => artifact.abi); this._abiDecoder = new AbiDecoder(abiArrays); |