diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-26 02:12:13 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-26 02:12:13 +0800 |
commit | 8e35923d6e2c6ed5347a34e7147067906f8c2fe5 (patch) | |
tree | b21687287265d45fe39fa2941cc6588ed2af7962 /src | |
parent | b9892c0d49076e4a32fdf33d5dc94e1d22cd2725 (diff) | |
download | dexon-sol-tools-8e35923d6e2c6ed5347a34e7147067906f8c2fe5.tar dexon-sol-tools-8e35923d6e2c6ed5347a34e7147067906f8c2fe5.tar.gz dexon-sol-tools-8e35923d6e2c6ed5347a34e7147067906f8c2fe5.tar.bz2 dexon-sol-tools-8e35923d6e2c6ed5347a34e7147067906f8c2fe5.tar.lz dexon-sol-tools-8e35923d6e2c6ed5347a34e7147067906f8c2fe5.tar.xz dexon-sol-tools-8e35923d6e2c6ed5347a34e7147067906f8c2fe5.tar.zst dexon-sol-tools-8e35923d6e2c6ed5347a34e7147067906f8c2fe5.zip |
Fix exchange type
Diffstat (limited to 'src')
-rw-r--r-- | src/ts/0x.js.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ts/0x.js.ts b/src/ts/0x.js.ts index 6d682fc4c..7ea32b87a 100644 --- a/src/ts/0x.js.ts +++ b/src/ts/0x.js.ts @@ -12,7 +12,7 @@ const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; export class ZeroEx { public web3Wrapper: Web3Wrapper; - public exchange: ContractInstance; + public exchange: ExchangeWrapper; /** * Verifies that the elliptic curve signature `signature` was generated * by signing `data` with the private key corresponding to the `signerAddressHex` address. |