clarify iteration range
This commit is contained in:
parent
421a7394df
commit
a607a61bde
@ -197,7 +197,8 @@ export class Compiler {
|
||||
versionToInputs[solcVersion].contractsToCompile.push(contractSource.path);
|
||||
}
|
||||
|
||||
for (const solcVersion of _.keys(versionToInputs)) {
|
||||
const solcVersions = _.keys(versionToInputs);
|
||||
for (const solcVersion of solcVersions) {
|
||||
const input = versionToInputs[solcVersion];
|
||||
logUtils.log(
|
||||
`Compiling ${input.contractsToCompile.length} contracts (${
|
||||
|
Loading…
x
Reference in New Issue
Block a user