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

View File

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