diff options
author | Fabio B <kandinsky454@protonmail.ch> | 2018-12-19 22:15:15 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-19 22:41:49 +0800 |
commit | 69de1d05efcadc1a6e70e98a0e77f32e8976560e (patch) | |
tree | 9b6c6ca55e87d9846510fcaa52429d6e08cb0b85 /packages/sol-compiler/src | |
parent | 237014e823ad4fba7bea50bdf8ec9b5a5cc25918 (diff) | |
download | dexon-sol-tools-69de1d05efcadc1a6e70e98a0e77f32e8976560e.tar dexon-sol-tools-69de1d05efcadc1a6e70e98a0e77f32e8976560e.tar.gz dexon-sol-tools-69de1d05efcadc1a6e70e98a0e77f32e8976560e.tar.bz2 dexon-sol-tools-69de1d05efcadc1a6e70e98a0e77f32e8976560e.tar.lz dexon-sol-tools-69de1d05efcadc1a6e70e98a0e77f32e8976560e.tar.xz dexon-sol-tools-69de1d05efcadc1a6e70e98a0e77f32e8976560e.tar.zst dexon-sol-tools-69de1d05efcadc1a6e70e98a0e77f32e8976560e.zip |
Update packages/sol-compiler/src/compiler.ts
Co-Authored-By: LogvinovLeon <logvinov.leon@gmail.com>
Diffstat (limited to 'packages/sol-compiler/src')
-rw-r--r-- | packages/sol-compiler/src/compiler.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sol-compiler/src/compiler.ts b/packages/sol-compiler/src/compiler.ts index b3531ab65..519712e20 100644 --- a/packages/sol-compiler/src/compiler.ts +++ b/packages/sol-compiler/src/compiler.ts @@ -297,7 +297,7 @@ export class Compiler { const compiledContract = compilerOutput.contracts[contractPath][contractName]; // need to gather sourceCodes for this artifact, but compilerOutput.sources (the list of contract modules) - // contains listings for for every contract compiled during the compiler invocation that compiled the contract + // contains listings for every contract compiled during the compiler invocation that compiled the contract // to be persisted, which could include many that are irrelevant to the contract at hand. So, gather up only // the relevant sources: const { sourceCodes, sources } = getSourcesWithDependencies( |