get contract from contract list, not compiled contracts
This commit is contained in:
parent
d20f90ae48
commit
3ea6e53218
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue