diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-22 06:58:06 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-22 06:58:06 +0800 |
commit | 301cb296ec77e8af5c1722679e04cb983c848153 (patch) | |
tree | c4f3c94c2f76e47d7b12d3761af57c15819c9cc2 /packages/sol-compiler/test | |
parent | 1bbd7bf870730dfe2146819e3740522990eb83ca (diff) | |
download | dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.gz dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.bz2 dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.lz dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.xz dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.tar.zst dexon-sol-tools-301cb296ec77e8af5c1722679e04cb983c848153.zip |
Move types from sol-compiler to types so they can be used in other places without requiring sol-compiler as a dep
Diffstat (limited to 'packages/sol-compiler/test')
-rw-r--r-- | packages/sol-compiler/test/compiler_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sol-compiler/test/compiler_test.ts b/packages/sol-compiler/test/compiler_test.ts index c9e141ee9..46853e882 100644 --- a/packages/sol-compiler/test/compiler_test.ts +++ b/packages/sol-compiler/test/compiler_test.ts @@ -1,10 +1,10 @@ import { DoneCallback } from '@0xproject/types'; import * as chai from 'chai'; +import { CompilerOptions, ContractArtifact } from 'ethereum-types'; import 'mocha'; import { Compiler } from '../src/compiler'; import { fsWrapper } from '../src/utils/fs_wrapper'; -import { CompilerOptions, ContractArtifact } from '../src/utils/types'; import { exchange_binary } from './fixtures/exchange_bin'; import { constants } from './util/constants'; |