get contract from contract list, not compiled contracts

This commit is contained in:
Iuri Matias 2016-10-23 11:15:35 -04:00
parent d20f90ae48
commit 3ea6e53218
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ ContractsManager.prototype.build = function() {
}; };
ContractsManager.prototype.getContract = function(className) { ContractsManager.prototype.getContract = function(className) {
return this.compiledContracts[className]; return this.contracts[className];
}; };
ContractsManager.prototype.sortContracts = function(contractList) { ContractsManager.prototype.sortContracts = function(contractList) {