aboutsummaryrefslogtreecommitdiffstats
path: root/packages/ethereum-types/src
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2019-01-28 23:24:54 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2019-01-29 00:24:44 +0800
commit0c12128f64f7d9a8de6088e98c2e638533d6f5bf (patch)
treec9770bf483655412a3144a07c219ddaed34ab064 /packages/ethereum-types/src
parent19064f8cbb21954108c4b8bd4a66879ddb240d7e (diff)
downloaddexon-0x-contracts-0c12128f64f7d9a8de6088e98c2e638533d6f5bf.tar
dexon-0x-contracts-0c12128f64f7d9a8de6088e98c2e638533d6f5bf.tar.gz
dexon-0x-contracts-0c12128f64f7d9a8de6088e98c2e638533d6f5bf.tar.bz2
dexon-0x-contracts-0c12128f64f7d9a8de6088e98c2e638533d6f5bf.tar.lz
dexon-0x-contracts-0c12128f64f7d9a8de6088e98c2e638533d6f5bf.tar.xz
dexon-0x-contracts-0c12128f64f7d9a8de6088e98c2e638533d6f5bf.tar.zst
dexon-0x-contracts-0c12128f64f7d9a8de6088e98c2e638533d6f5bf.zip
Temp CI
Diffstat (limited to 'packages/ethereum-types/src')
-rw-r--r--packages/ethereum-types/src/index.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/ethereum-types/src/index.ts b/packages/ethereum-types/src/index.ts
index a1f6919a8..bbc3682c7 100644
--- a/packages/ethereum-types/src/index.ts
+++ b/packages/ethereum-types/src/index.ts
@@ -503,8 +503,7 @@ export interface Source {
/**
* Options you can specify (as flags or in a compiler.json file) when invoking sol-compiler
- * contractsDir: Directory containing your package's Solidity contracts. Can contain nested directories.
- * workspaceDir: Directory containing your project's Solidity contracts. All the contracts used in compilation must be withing it. Similar to --allow-paths in Solidity.
+ * contractsDir: Directory containing your project's Solidity contracts. Can contain nested directories.
* artifactsDir: Directory where you want the generated artifacts.json written to
* compilerSettings: Desired settings to pass to the Solidity compiler during compilation.
* (http://solidity.readthedocs.io/en/v0.4.24/using-the-compiler.html#compiler-input-and-output-json-description)
@@ -516,7 +515,6 @@ export interface Source {
*/
export interface CompilerOptions {
contractsDir?: string;
- workspaceDir?: string;
artifactsDir?: string;
compilerSettings?: CompilerSettings;
contracts?: string[] | '*';