mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Allows wildcard as output selector in standard JSON.
This commit is contained in:
@@ -394,7 +394,8 @@ bool CompilerStack::isRequestedContract(ContractDefinition const& _contract) con
|
||||
return
|
||||
m_requestedContractNames.empty() ||
|
||||
m_requestedContractNames.count(_contract.fullyQualifiedName()) ||
|
||||
m_requestedContractNames.count(_contract.name());
|
||||
m_requestedContractNames.count(_contract.name()) ||
|
||||
m_requestedContractNames.count(":" + _contract.name());
|
||||
}
|
||||
|
||||
bool CompilerStack::compile()
|
||||
|
||||
Reference in New Issue
Block a user