diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-05-07 19:37:21 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-05-07 19:37:21 +0800 |
commit | 0f1589a43f610a79f46fa4c3412670b546b032af (patch) | |
tree | 433e54f31c04e210c8c8d1bd236b9ce3865fd8a4 /packages/deployer/src/compiler.ts | |
parent | 27262c4e5690e79ac19976012c0b82e86644dbdc (diff) | |
download | dexon-sol-tools-0f1589a43f610a79f46fa4c3412670b546b032af.tar dexon-sol-tools-0f1589a43f610a79f46fa4c3412670b546b032af.tar.gz dexon-sol-tools-0f1589a43f610a79f46fa4c3412670b546b032af.tar.bz2 dexon-sol-tools-0f1589a43f610a79f46fa4c3412670b546b032af.tar.lz dexon-sol-tools-0f1589a43f610a79f46fa4c3412670b546b032af.tar.xz dexon-sol-tools-0f1589a43f610a79f46fa4c3412670b546b032af.tar.zst dexon-sol-tools-0f1589a43f610a79f46fa4c3412670b546b032af.zip |
Define a separator const
Diffstat (limited to 'packages/deployer/src/compiler.ts')
-rw-r--r-- | packages/deployer/src/compiler.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/deployer/src/compiler.ts b/packages/deployer/src/compiler.ts index 673bc3186..85449ac8d 100644 --- a/packages/deployer/src/compiler.ts +++ b/packages/deployer/src/compiler.ts @@ -53,7 +53,7 @@ const DEFAULT_COMPILER_SETTINGS: solc.CompilerSettings = { }, outputSelection: { '*': { - '*': ['abi', 'evm.bytecode.object'], + [ALL_CONTRACTS_IDENTIFIER]: ['abi', 'evm.bytecode.object'], }, }, }; |