mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-23 03:59:18 +00:00
commit
775b043209
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user