aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/order_watcher
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-01-04 19:38:19 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-01-04 19:38:19 +0800
commit4dfa720f2dec2be0b0758633c087579a02e482bb (patch)
tree242eec230a95f44a1280c7a6431cf1b48ff70337 /packages/0x.js/src/order_watcher
parentce6abad97f248a3557390dd1e1ff3ae84662838f (diff)
downloaddexon-0x-contracts-4dfa720f2dec2be0b0758633c087579a02e482bb.tar
dexon-0x-contracts-4dfa720f2dec2be0b0758633c087579a02e482bb.tar.gz
dexon-0x-contracts-4dfa720f2dec2be0b0758633c087579a02e482bb.tar.bz2
dexon-0x-contracts-4dfa720f2dec2be0b0758633c087579a02e482bb.tar.lz
dexon-0x-contracts-4dfa720f2dec2be0b0758633c087579a02e482bb.tar.xz
dexon-0x-contracts-4dfa720f2dec2be0b0758633c087579a02e482bb.tar.zst
dexon-0x-contracts-4dfa720f2dec2be0b0758633c087579a02e482bb.zip
Use configured version of bignumber in all packages
Diffstat (limited to 'packages/0x.js/src/order_watcher')
-rw-r--r--packages/0x.js/src/order_watcher/expiration_watcher.ts2
-rw-r--r--packages/0x.js/src/order_watcher/remaining_fillable_calculator.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/0x.js/src/order_watcher/expiration_watcher.ts b/packages/0x.js/src/order_watcher/expiration_watcher.ts
index 47e03dd38..88c44f9a2 100644
--- a/packages/0x.js/src/order_watcher/expiration_watcher.ts
+++ b/packages/0x.js/src/order_watcher/expiration_watcher.ts
@@ -1,5 +1,5 @@
import { intervalUtils } from '@0xproject/utils';
-import { BigNumber } from 'bignumber.js';
+import { BigNumber } from '@0xproject/utils';
import { RBTree } from 'bintrees';
import * as _ from 'lodash';
diff --git a/packages/0x.js/src/order_watcher/remaining_fillable_calculator.ts b/packages/0x.js/src/order_watcher/remaining_fillable_calculator.ts
index 2200be0cb..20b09d606 100644
--- a/packages/0x.js/src/order_watcher/remaining_fillable_calculator.ts
+++ b/packages/0x.js/src/order_watcher/remaining_fillable_calculator.ts
@@ -1,4 +1,4 @@
-import { BigNumber } from 'bignumber.js';
+import { BigNumber } from '@0xproject/utils';
import { SignedOrder } from '../types';