diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-04 01:41:55 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-04 01:41:55 +0800 |
commit | 9337d207a1f4d5c28b42d1364a2a8bdc0dc841cf (patch) | |
tree | a8de929b3d20b26c503bbf4c0f43467d78285591 /packages/website | |
parent | c17d6c47c3253cf32c2dada8f7f871563f7209e9 (diff) | |
download | dexon-sol-tools-9337d207a1f4d5c28b42d1364a2a8bdc0dc841cf.tar dexon-sol-tools-9337d207a1f4d5c28b42d1364a2a8bdc0dc841cf.tar.gz dexon-sol-tools-9337d207a1f4d5c28b42d1364a2a8bdc0dc841cf.tar.bz2 dexon-sol-tools-9337d207a1f4d5c28b42d1364a2a8bdc0dc841cf.tar.lz dexon-sol-tools-9337d207a1f4d5c28b42d1364a2a8bdc0dc841cf.tar.xz dexon-sol-tools-9337d207a1f4d5c28b42d1364a2a8bdc0dc841cf.tar.zst dexon-sol-tools-9337d207a1f4d5c28b42d1364a2a8bdc0dc841cf.zip |
Stop exporting constants from order-utils
Diffstat (limited to 'packages/website')
-rw-r--r-- | packages/website/ts/redux/reducer.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/website/ts/redux/reducer.ts b/packages/website/ts/redux/reducer.ts index caddabcf0..15f118813 100644 --- a/packages/website/ts/redux/reducer.ts +++ b/packages/website/ts/redux/reducer.ts @@ -1,4 +1,4 @@ -import { constants, generatePseudoRandomSalt } from '@0xproject/order-utils'; +import { generatePseudoRandomSalt } from '@0xproject/order-utils'; import { ECSignature } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import * as _ from 'lodash'; @@ -16,6 +16,7 @@ import { } from 'ts/types'; import { Translate } from 'ts/utils/translate'; import { utils } from 'ts/utils/utils'; +import { constants } from 'ts/utils/constants'; // Instead of defaulting the docs version to an empty string, we pre-populate it with // a valid version value. This does not need to be updated however, since onLoad, it |