mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	ABI: Use external function.
This commit is contained in:
		
							parent
							
								
									08763a206d
								
							
						
					
					
						commit
						746266b8fc
					
				| @ -66,7 +66,7 @@ Json::Value InterfaceHandler::abiInterface(ContractDefinition const& _contractDe | ||||
| 	{ | ||||
| 		Json::Value method; | ||||
| 		method["type"] = "constructor"; | ||||
| 		auto externalFunction = FunctionType(*_contractDef.constructor()).interfaceFunctionType(); | ||||
| 		auto externalFunction = FunctionType(*_contractDef.constructor(), false).interfaceFunctionType(); | ||||
| 		solAssert(!!externalFunction, ""); | ||||
| 		method["inputs"] = populateParameters( | ||||
| 			externalFunction->parameterNames(), | ||||
| @ -76,7 +76,7 @@ Json::Value InterfaceHandler::abiInterface(ContractDefinition const& _contractDe | ||||
| 	} | ||||
| 	if (_contractDef.fallbackFunction()) | ||||
| 	{ | ||||
| 		auto externalFunctionType = FunctionType(*_contractDef.fallbackFunction()).interfaceFunctionType(); | ||||
| 		auto externalFunctionType = FunctionType(*_contractDef.fallbackFunction(), false).interfaceFunctionType(); | ||||
| 		solAssert(!!externalFunctionType, ""); | ||||
| 		Json::Value method; | ||||
| 		method["type"] = "fallback"; | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user