removed unused parameter from streamAsmJson

This commit is contained in:
Liana Husikyan 2015-04-17 16:40:40 +02:00
parent 1cfa964990
commit e4808305a1

View File

@ -188,7 +188,7 @@ void CompilerStack::streamAssembly(ostream& _outStream, string const& _contractN
{ {
Contract const& contract = getContract(_contractName); Contract const& contract = getContract(_contractName);
if (contract.compiler) if (contract.compiler)
contract(_contractName).compiler->streamAssembly(_outStream, _sourceCodes, _inJsonFormat); contract.compiler->streamAssembly(_outStream, _sourceCodes, _inJsonFormat);
else else
_outStream << "Contract not fully implemented" << endl; _outStream << "Contract not fully implemented" << endl;
} }