mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
removed unused parameter from streamAsmJson
This commit is contained in:
parent
1cfa964990
commit
e4808305a1
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user