Merge pull request #79 from RCasatta/develop

Support for solc 0.1.2
This commit is contained in:
Iuri Matias 2015-09-14 08:00:24 -04:00
commit 775b043209

View File

@ -23,7 +23,7 @@ Compiler.prototype.init = function(env) {
Compiler.prototype.compile_solidity = function(contractFile) {
var cmd, result, output, json, compiled_object;
cmd = "solc --input-file " + contractFile + " --combined-json binary,json-abi";
cmd = "solc --input-file " + contractFile + " --combined-json bin,abi";
result = exec(cmd, {silent: true});
output = result.output;
@ -41,7 +41,7 @@ Compiler.prototype.compile_solidity = function(contractFile) {
compiled_object[className] = {};
compiled_object[className].code = contract.binary;
compiled_object[className].info = {};
compiled_object[className].info.abiDefinition = JSON.parse(contract["json-abi"]);
compiled_object[className].info.abiDefinition = JSON.parse(contract["abi"]);
}
return compiled_object;