diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-03-15 06:02:58 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-03-15 07:33:10 +0800 |
commit | ffe7363776077e2363afc23a8e4c5e2ea420aefe (patch) | |
tree | 6eb19a3944d07c1ff5ce5903b8ed496b07546894 /packages/0x.js/test | |
parent | 4a27a7dc581fc6c8a3d4e212ca3712c249a5b417 (diff) | |
download | dexon-sol-tools-ffe7363776077e2363afc23a8e4c5e2ea420aefe.tar dexon-sol-tools-ffe7363776077e2363afc23a8e4c5e2ea420aefe.tar.gz dexon-sol-tools-ffe7363776077e2363afc23a8e4c5e2ea420aefe.tar.bz2 dexon-sol-tools-ffe7363776077e2363afc23a8e4c5e2ea420aefe.tar.lz dexon-sol-tools-ffe7363776077e2363afc23a8e4c5e2ea420aefe.tar.xz dexon-sol-tools-ffe7363776077e2363afc23a8e4c5e2ea420aefe.tar.zst dexon-sol-tools-ffe7363776077e2363afc23a8e4c5e2ea420aefe.zip |
Add SignedOrder, Order, and ECSignature types to the types package
Diffstat (limited to 'packages/0x.js/test')
-rw-r--r-- | packages/0x.js/test/remaining_fillable_calculator_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/test/remaining_fillable_calculator_test.ts b/packages/0x.js/test/remaining_fillable_calculator_test.ts index 4c6b8f3ac..d97402ef6 100644 --- a/packages/0x.js/test/remaining_fillable_calculator_test.ts +++ b/packages/0x.js/test/remaining_fillable_calculator_test.ts @@ -1,10 +1,10 @@ +import { ECSignature, SignedOrder } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import * as chai from 'chai'; import 'mocha'; import { ZeroEx } from '../src/0x'; import { RemainingFillableCalculator } from '../src/order_watcher/remaining_fillable_calculator'; -import { ECSignature, SignedOrder } from '../src/types'; import { chaiSetup } from './utils/chai_setup'; |