mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fixed #683
This commit is contained in:
parent
8e3fbbad44
commit
566b980fa3
@ -56,7 +56,7 @@ std::unique_ptr<std::string> InterfaceHandler::getABIInterface(ContractDefinitio
|
|||||||
};
|
};
|
||||||
|
|
||||||
method["name"] = f->getName();
|
method["name"] = f->getName();
|
||||||
method["const"] = f->isDeclaredConst();
|
method["constant"] = f->isDeclaredConst();
|
||||||
method["inputs"] = populateParameters(f->getParameters());
|
method["inputs"] = populateParameters(f->getParameters());
|
||||||
method["outputs"] = populateParameters(f->getReturnParameters());
|
method["outputs"] = populateParameters(f->getReturnParameters());
|
||||||
methods.append(method);
|
methods.append(method);
|
||||||
|
2
Token.h
2
Token.h
@ -142,7 +142,7 @@ namespace solidity
|
|||||||
/* Keywords */ \
|
/* Keywords */ \
|
||||||
K(BREAK, "break", 0) \
|
K(BREAK, "break", 0) \
|
||||||
K(CASE, "case", 0) \
|
K(CASE, "case", 0) \
|
||||||
K(CONST, "const", 0) \
|
K(CONST, "constant", 0) \
|
||||||
K(CONTINUE, "continue", 0) \
|
K(CONTINUE, "continue", 0) \
|
||||||
K(CONTRACT, "contract", 0) \
|
K(CONTRACT, "contract", 0) \
|
||||||
K(DEFAULT, "default", 0) \
|
K(DEFAULT, "default", 0) \
|
||||||
|
Loading…
Reference in New Issue
Block a user