diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-01-04 21:53:38 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-01-04 21:53:38 +0800 |
commit | c49f68ef3ebb11f779868b35f938c1d1cb08c665 (patch) | |
tree | 956cc24a95bfe53d9f244af1d79e728f44458a58 /packages/0x.js/src/utils | |
parent | d0f66f86243ed958908b1c1d02a04e120c37cf71 (diff) | |
download | dexon-sol-tools-c49f68ef3ebb11f779868b35f938c1d1cb08c665.tar dexon-sol-tools-c49f68ef3ebb11f779868b35f938c1d1cb08c665.tar.gz dexon-sol-tools-c49f68ef3ebb11f779868b35f938c1d1cb08c665.tar.bz2 dexon-sol-tools-c49f68ef3ebb11f779868b35f938c1d1cb08c665.tar.lz dexon-sol-tools-c49f68ef3ebb11f779868b35f938c1d1cb08c665.tar.xz dexon-sol-tools-c49f68ef3ebb11f779868b35f938c1d1cb08c665.tar.zst dexon-sol-tools-c49f68ef3ebb11f779868b35f938c1d1cb08c665.zip |
Fix linter errors
Diffstat (limited to 'packages/0x.js/src/utils')
-rw-r--r-- | packages/0x.js/src/utils/assert.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/src/utils/assert.ts b/packages/0x.js/src/utils/assert.ts index cf20e7ed7..c21f2dbca 100644 --- a/packages/0x.js/src/utils/assert.ts +++ b/packages/0x.js/src/utils/assert.ts @@ -2,9 +2,9 @@ import { assert as sharedAssert } from '@0xproject/assert'; // We need those two unused imports because they're actually used by sharedAssert which gets injected here // tslint:disable-next-line:no-unused-variable import { Schema } from '@0xproject/json-schemas'; -import { Web3Wrapper } from '@0xproject/web3-wrapper'; // tslint:disable-next-line:no-unused-variable import { BigNumber } from '@0xproject/utils'; +import { Web3Wrapper } from '@0xproject/web3-wrapper'; import * as _ from 'lodash'; import { ECSignature } from '../types'; |