From 74012ad584ba93043e60f143d88619f580ceed08 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Fri, 13 Apr 2018 13:20:54 +0200 Subject: Rename getAllContracts to getAll --- packages/deployer/src/compiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/deployer/src/compiler.ts') diff --git a/packages/deployer/src/compiler.ts b/packages/deployer/src/compiler.ts index ef4e048d5..0a99e5659 100644 --- a/packages/deployer/src/compiler.ts +++ b/packages/deployer/src/compiler.ts @@ -84,7 +84,7 @@ export class Compiler { await createDirIfDoesNotExistAsync(SOLC_BIN_DIR); let contractNamesToCompile: string[] = []; if (this._specifiedContracts.has(ALL_CONTRACTS_IDENTIFIER)) { - const allContracts = this._nameResolver.getAllContracts(); + const allContracts = this._nameResolver.getAll(); contractNamesToCompile = _.map(allContracts, contractSource => path.basename(contractSource.path, constants.SOLIDITY_FILE_EXTENSION), ); -- cgit v1.2.3