| 162 | thinkyoung::lua::lib::register_module(_L, name, openmodule_func); |
| 163 | } |
| 164 | int GluaStateScope::execute_contract_api(const char *contract_name, const char *api_name, const char *arg1, std::string *result_json_string) |
| 165 | { |
| 166 | return thinkyoung::lua::lib::execute_contract_api(_L, contract_name, api_name, arg1, result_json_string); |
| 167 | } |
| 168 | |
| 169 | int GluaStateScope::execute_contract_api_by_address(const char *address, const char *api_name, const char *arg1, std::string *result_json_string) |
| 170 | { |
nothing calls this directly
no test coverage detected