| 1034 | } |
| 1035 | |
| 1036 | bool lthinkyoung_set_storage(lua_State *L, const char *contract_id, const char *name, GluaStorageValue value) |
| 1037 | { |
| 1038 | lua_pushstring(L, contract_id); |
| 1039 | lua_pushstring(L, name); |
| 1040 | lua_push_storage_value(L, value); |
| 1041 | glua::lib::thinkyounglib_set_storage(L); |
| 1042 | return !global_glua_chain_api->has_exception(L); |
| 1043 | } |
| 1044 | |
| 1045 | } |
| 1046 | } |
nothing calls this directly
no test coverage detected