diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-07-07 01:23:24 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-07-07 01:23:24 +0800 |
commit | acfbba5476d48645eee7f471ecaa4b1142709939 (patch) | |
tree | 8e62f46a85c50cf3685d3a02fe63bc56fd3d6028 /packages/web3-wrapper/src/web3_wrapper.ts | |
parent | 188bf000b784fe6d9e24e3758a30a72a2795bc58 (diff) | |
download | dexon-sol-tools-acfbba5476d48645eee7f471ecaa4b1142709939.tar dexon-sol-tools-acfbba5476d48645eee7f471ecaa4b1142709939.tar.gz dexon-sol-tools-acfbba5476d48645eee7f471ecaa4b1142709939.tar.bz2 dexon-sol-tools-acfbba5476d48645eee7f471ecaa4b1142709939.tar.lz dexon-sol-tools-acfbba5476d48645eee7f471ecaa4b1142709939.tar.xz dexon-sol-tools-acfbba5476d48645eee7f471ecaa4b1142709939.tar.zst dexon-sol-tools-acfbba5476d48645eee7f471ecaa4b1142709939.zip |
Revert moving formatUtils into utils
Diffstat (limited to 'packages/web3-wrapper/src/web3_wrapper.ts')
-rw-r--r-- | packages/web3-wrapper/src/web3_wrapper.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/web3-wrapper/src/web3_wrapper.ts b/packages/web3-wrapper/src/web3_wrapper.ts index 57ad0a0db..495523e44 100644 --- a/packages/web3-wrapper/src/web3_wrapper.ts +++ b/packages/web3-wrapper/src/web3_wrapper.ts @@ -1,6 +1,6 @@ import { assert } from '@0xproject/assert'; import { schemas } from '@0xproject/json-schemas'; -import { AbiDecoder, addressUtils, BigNumber, formatUtils as utils, intervalUtils, promisify } from '@0xproject/utils'; +import { AbiDecoder, addressUtils, BigNumber, intervalUtils, promisify } from '@0xproject/utils'; import { BlockParam, BlockParamLiteral, @@ -23,6 +23,7 @@ import * as _ from 'lodash'; import { marshaller } from './marshaller'; import { BlockWithoutTransactionDataRPC, BlockWithTransactionDataRPC, Web3WrapperErrors } from './types'; +import { utils } from './utils'; const BASE_TEN = 10; |