change back to original version of solc

This commit is contained in:
RJ Catalano 2015-10-17 20:53:41 -05:00 committed by Iuri Matias
parent 2a1ec1b2d7
commit e0d9931a74
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ Compiler.prototype.init = function(env) {
Compiler.prototype.compile_solidity = function(contractFile) {
var cmd, result, output, version, json, compiled_object;
cmd = "solc --input-file " + contractFile + " --combined-json bin,abi";
cmd = "solc " + contractFile + " --combined-json bin,abi";
result = exec(cmd, {silent: true});
output = result.output;