Merge pull request #8736

ac9a897 Revert 'epee: when loading a JSON RPC payload, ensure params is an object' (moneromooo-monero)
This commit is contained in:
luigi1111 2023-02-15 10:45:53 -05:00
commit 3b765c509f
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 0 additions and 10 deletions

View File

@ -152,16 +152,6 @@
epee::serialization::store_t_to_json(static_cast<epee::json_rpc::error_response&>(rsp), response_info.m_body); \
return true; \
} \
epee::serialization::storage_entry se; \
if(ps.get_value("params", se, nullptr) && se.type() != typeid(epee::serialization::section)) \
{ \
boost::value_initialized<epee::json_rpc::error_response> rsp; \
static_cast<epee::json_rpc::error_response&>(rsp).jsonrpc = "2.0"; \
static_cast<epee::json_rpc::error_response&>(rsp).error.code = -32701; \
static_cast<epee::json_rpc::error_response&>(rsp).error.message = "Params is not an object"; \
epee::serialization::store_t_to_json(static_cast<epee::json_rpc::error_response&>(rsp), response_info.m_body); \
return true; \
} \
epee::serialization::storage_entry id_; \
id_ = epee::serialization::storage_entry(std::string()); \
ps.get_value("id", id_, nullptr); \